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.
30 lines
991 B
30 lines
991 B
<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" /> |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
<view class="circle"> |
|
<view class="content"> |
|
<block wx:for="{{Deputy}}" wx:key="Deputy"> |
|
<view class="list" wx:if="{{item.memberType!=3}}"> |
|
<checkbox-group bindchange="checkboxChange"> |
|
<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 class="bottom" bindtap="save">保存</view> |
|
</view> |