123456789101112131415161718 |
- <view style="position: sticky; top: 0px; z-index: 999; background-color: #F4F5F7; padding-bottom: 20rpx;">
- <van-search custom-class='search' value="{{ paging.where.condition }}" shape="round" background="#fff" placeholder="请输入搜索关键词" bind:search='onSearch' bind:clear='onClear' />
- </view>
- <van-checkbox-group value="{{ result }}" bind:change="onChange">
- <van-cell-group>
- <van-cell wx:for="{{ list }}" wx:key="value" title="{{ item.showValue }}" label="{{item.remarks}}" value-class="value-class" clickable data-item="{{ item }}" bind:click="toggle">
- <van-checkbox name="{{ item.value }}" />
- </van-cell>
- </van-cell-group>
- </van-checkbox-group>
- <My_empty wx:if="{{list.length==0}}" />
- <block wx:if="{{item.optionType == 'checkbox'}}">
- <view style="height: 130rpx;" />
- <view class="new-footer">
- <van-button custom-class='new-submit' disabled='{{!result.length}}' bindclick='submit'>提交</van-button>
- </view>
- </block>
|