| 1234567891011121314151617181920 | <van-popup show="{{ show }}" position="bottom" custom-style="height:100%;" round closeable bind:close="onClose">    <view class="header">选择项目</view>    <view style="height: 90rpx;" />    <van-search value="{{ value }}" shape="round" placeholder="请输入搜索关键词" bind:search='startSearch' bind:clear='onClear' />    <van-checkbox-group value="{{ result }}" bindchange="onChange">        <navigator url="#" wx:for="{{showList}}" wx:key="item.sa_projectid">            <van-checkbox shape="square" name="{{item.sa_projectid}}" custom-class='checkbox' icon-class='icon-class' label-class='label-class'>                <view class="label line-1">项目:{{item.projectname}}</view>                <view class="check-text line-1">项目编号:{{item.projectnum}}</view>                <view class="check-text line-1">项目地址:{{item.address}}</view>            </van-checkbox>        </navigator>    </van-checkbox-group>    <My_empty wx:if="{{showList.length==0}}" />    <view class="footer">        <view>已选择:{{result.length}}个</view>        <van-button custom-class='but' bindtap="handleReturn" disabled='{{!result.length}}'>确认添加</van-button>    </view>    <view style="height: 110rpx;" /></van-popup>
 |