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.
11 lines
406 B
11 lines
406 B
<view class="page"> |
|
<view class="container"> |
|
<view class="user" wx:for="{{list}}" wx:key="doctorId"> |
|
<doctorAvatar class="avatar" src="{{item.doctorImg}}" level="{{item.doctorLevel}}"></doctorAvatar> |
|
<view class="name">{{item.doctorName}}</view> |
|
</view> |
|
<view wx:if="{{canInvite}}" class="add" bind:tap="handleDoctor"> |
|
<van-icon name="plus" /> |
|
</view> |
|
</view> |
|
</view>
|
|
|