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.
54 lines
1.9 KiB
54 lines
1.9 KiB
<view class="notice" wx:if="{{list.length}}">{{pagination.count}}位医生待您审核</view> |
|
|
|
<view class="page"> |
|
<view class="list"> |
|
<view class="list-item" wx:for="{{list}}" wx:key="AuditId"> |
|
<view class="user"> |
|
<image class="avatar" src="{{item.Img}}"></image> |
|
<view class="wrap"> |
|
<view class="w-header"> |
|
<view class="left"> |
|
<view class="name">{{item.Name}}</view> |
|
<view class="label" wx:if="{{item.TitleType==='99'}}">{{item.OtherTitle}}</view> |
|
<view class="label" wx:else>{{DoctorTitleType[item.TitleType]}}</view> |
|
</view> |
|
<view class="type">注册申请</view> |
|
<!-- <view class="type">绑定申请</view> --> |
|
</view> |
|
<view class="w-footer"> |
|
<view class="content">{{item.HospitalName}}</view> |
|
<view class="tag">{{item.HospitalClassificationName}}{{item.HospitalLevelName}}</view> |
|
</view> |
|
</view> |
|
</view> |
|
<view class="photo-wrap"> |
|
<image |
|
class="photo" |
|
src="{{item.RegisterImg}}" |
|
mode="aspectFill" |
|
catch:tap="handlePreview" |
|
data-url="{{item.RegisterImg}}" |
|
></image> |
|
<image |
|
class="photo" |
|
src="{{item.QualificationImg}}" |
|
mode="aspectFill" |
|
catch:tap="handlePreview" |
|
data-url="{{item.QualificationImg}}" |
|
></image> |
|
<image |
|
class="photo" |
|
src="{{item.PositionImg}}" |
|
mode="aspectFill" |
|
catch:tap="handlePreview" |
|
data-url="{{item.PositionImg}}" |
|
></image> |
|
</view> |
|
<view class="l-footer"> |
|
<view class="date">提交时间:{{item.SubmitTime}}</view> |
|
<view class="btn" bind:tap="handleDetail" data-index="{{index}}">审核</view> |
|
</view> |
|
</view> |
|
<pagination pagination="{{pagination}}"></pagination> |
|
</view> |
|
</view>
|
|
|