You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.3 KiB
39 lines
1.3 KiB
3 years ago
|
<view class="container">
|
||
|
<view class="nav">
|
||
|
<view class="search">
|
||
|
<view class="search-box" bindtap="toSearch">
|
||
|
<view class="search-icon">
|
||
|
<image src="/images/search.png"></image>
|
||
|
</view>
|
||
|
<view class="search-input">
|
||
|
<input type="text" placeholder="搜索关键词" placeholder-class="defalt-style" model:value='{{texts}}' bindinput="sousuo" />
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="limit">
|
||
|
<view class="limitbox">
|
||
|
每日移除上限
|
||
|
<view class="num">10<image src="../../../images/back.png"></image>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="save">
|
||
|
<view class="cancel" bindtap="quxiao"><text>取消</text></view>
|
||
|
<view class="sub" bindtap="subremove"><text>确定移除</text></view>
|
||
|
</view>
|
||
|
<view class="circle">
|
||
|
<view class="content">
|
||
|
<block wx:for="{{Deputy}}" wx:key="Deputy">
|
||
|
<view class="list">
|
||
|
<checkbox-group bindchange="checkboxChange" data-index='{{index}}'>
|
||
|
<checkbox value='{{item.memberId}}'>
|
||
|
<image src="{{item.memberPhoto}}"></image>{{item.nickname}}
|
||
|
<text wx:if="{{item.ispop}}">个性化称号</text>
|
||
|
</checkbox>
|
||
|
</checkbox-group>
|
||
|
</view>
|
||
|
</block>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|