Sanakey
2021-06-04 355a84d740a2a9dfa1d67cb2d2e11843d42809ac
提交 | 用户 | age
a38dad 1 <view>
S 2   <view class="text-center padding border-bottom">选择营销人员</view>
9e299c 3
355a84 4   <van-cell-group>
S 5     <van-cell
6         wx:for="{{ selectedSellerList }}"
7         wx:key="index"
8         value-class="value-class"
9         center
10         data-name="{{ item.sellerId }}"
11         data-index="{{ index }}"
12         use-label-slot
13         title-width="450rpx"
14     >
15       <view class="flex-row space-around" wx:if="{{item.isDefaultSellerName}}">
16         <text>默认</text>
17         <text class="iconfont icon-chenggong theme-font-color font-size-24"></text>
18       </view>
19       <view slot="title">
20         <view>{{ item.sellerName }}</view>
21         <view class="desc">{{item.telephone}}</view>
22       </view>
23     </van-cell>
24   </van-cell-group>
a38dad 25
S 26
27   <van-cell-group class="my-cell-group">
28     <van-cell class="my-cell" bind:tap="addSeller" border="{{false}}" >
29       <view slot="title"  class="theme-font-color {{sellerList.length>4?'disabled-color':''}}">
30         <van-icon name="plus" /> 选择
9e299c 31       </view>
7a3e75 32       <view class="font-size-12">非认证会员最多选择5人,认证会员不限制</view>
a38dad 33     </van-cell>
S 34   </van-cell-group>
35 </view>