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.

12 lines
946 B
Plaintext

<view class="mt10 bgf">
<view class="weui-cells weui-cells_after-title" style="margin-top: 0;">
<navigator class="weui-cell" hover-class="hcb" wx:for="{{record}}" wx:key="index" mark:id="{{item.id}}" mark:index="{{index}}" url="{{item.agencyRole != 1 ?'./edit/index?userId='+item.id+'&userName='+item.userName+'&tel='+item.tel+'&agencyRole='+item.agencyRole:''}}">
<view class="weui-cell__bd f16 c3 va-center">
<i class="t-icon t-icon-chuangjianren mr8" wx:if="{{item.agencyRole == 1}}" style="width:42px;height:16px;"></i>
<i class="t-icon t-icon-guanliyuan mr8" wx:if="{{item.agencyRole == 2}}" style="width:42px;height:16px;"></i>
<i class="t-icon t-icon-chengyuan mr8" wx:if="{{item.agencyRole == 3}}" style="width:42px;height:16px;"></i>
{{item.userName}}({{item.tel}})</view>
<i class="iconfont icon-you f16 c9 ml8" wx:if="{{item.agencyRole != 1}}"></i>
</navigator>
</view>
</view>