You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1.5 KiB
Plaintext
22 lines
1.5 KiB
Plaintext
|
1 year ago
|
<scroll-view class="container mt16" scroll-x="false" scroll-y="true" upper-threshold="50" lower-threshold="50" scroll-top="0" scroll-left="0" scroll-into-view scroll-with-animation="false" enable-back-to-top="false">
|
||
|
|
<view class="box" wx:for="{{mamberList}}" bindtap="selectMember" data-info="{{item}}" wx:for-index="index" hover-class="none" hover-stop-propagation="false">
|
||
|
|
<!-- {{index != 0 ? 'bt1' : ''}} -->
|
||
|
|
<view class="subset bt1">
|
||
|
|
<view class="left">
|
||
|
|
<view class="name" hover-class="none" hover-stop-propagation="false" style="min-width:148px">
|
||
|
|
<view class="f16 oelps c6" hover-class="none" hover-stop-propagation="false">{{item.aliasName || '-'}}</view>
|
||
|
|
<view class="mark ml4 {{item.agencyRole == 1 ? 't-icon t-icon-chuangjianren' : (item.agencyRole == 2 ? 't-icon t-icon-guanliyuan': (item.agencyRole == 3 && item.notBeAllow ? 't-icon t-icon-daiduifangtongyi ' :'t-icon t-icon-chengyuan'))}}"></view>
|
||
|
|
</view>
|
||
|
|
<view class="tel c6 f18">
|
||
|
|
<!-- {{item.tel}} -->
|
||
|
|
<i class="iconfont icon-gengduo11 f14 cccc ml4" wx:if="{{userInfo.user.agencyRole !== 3}}"></i>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class hover-class="none" hover-stop-propagation="false">
|
||
|
|
<!-- <view class="edit" wx:if="{{isEdit}}" bindtap='editMember' data-info='{{item}}'>编辑</view>
|
||
|
|
<view class="delete ysd-base-color" bindtap='showDelModal' data-id='{{item.id}}' wx:if="{{item.agencyRole != 1 && !isEdit}}">删除</view>-->
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</scroll-view>
|