22 lines
1.1 KiB
Plaintext
22 lines
1.1 KiB
Plaintext
<view class='container'>
|
|
<view class='btn-wrapper'>
|
|
<button bindtap='goBack'>返回上一层</button>
|
|
</view>
|
|
<view class='people-wrapper'>
|
|
<scroll-view scroll-y class='scrollview'>
|
|
<checkbox-group bindchange="checkChange">
|
|
<view class='item' wx:for='{{currentList}}' wx:key="index">
|
|
<checkbox checked='{{item.checked}}' value='{{item.id + "," + item.name}}' wx:if="{{item.isPeople && type == 'multiple'}}"> </checkbox>
|
|
<view id='{{index}}' class='item-content' bindtap='clickItem' >
|
|
<image class='img' wx:if='{{!item.isPeople}}' src='../images/part.png'></image>
|
|
<image class='avatar' wx:if='{{item.isPeople}}' src='../images/man.png'></image>
|
|
<text class='itemtext'>{{item.name}}</text> </view>
|
|
</view>
|
|
</checkbox-group>
|
|
<view class='no-data' wx:if='{{currentList.length===0}}'>暂无数据</view>
|
|
</scroll-view>
|
|
</view>
|
|
<view class='footer' wx:if="{{type=='multiple'}}">
|
|
<footer list='{{selectList}}' binddelete='footerDelete' bindsubmit="submitData" />
|
|
</view>
|
|
</view> |