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.
104 lines
3.5 KiB
104 lines
3.5 KiB
<view class="page"> |
|
<view class="card"> |
|
<view class="row"> |
|
<view class="label">提交人</view> |
|
<view class="content">{{detail.Name}}</view> |
|
</view> |
|
<view class="row"> |
|
<view class="label">提交时间</view> |
|
<view class="content">{{detail.SubmitTime}}</view> |
|
</view> |
|
</view> |
|
<view class="card"> |
|
<view class="user"> |
|
<image class="avatar" src="{{detail.Img}}"></image> |
|
</view> |
|
<view class="row"> |
|
<view class="label">姓名</view> |
|
<view class="content">{{detail.Name}}</view> |
|
</view> |
|
<view class="row"> |
|
<view class="label">头衔</view> |
|
<view class="content">主任医师</view> |
|
</view> |
|
<view class="row"> |
|
<view class="label">证件</view> |
|
<view class="photo-wrap"> |
|
<image |
|
class="photo" |
|
src="{{detail.RegisterImg}}" |
|
mode="aspectFill" |
|
catch:tap="handlePreview" |
|
data-url="{{detail.RegisterImg}}" |
|
> |
|
<view class="preview">预览</view> |
|
</image> |
|
<image |
|
class="photo" |
|
src="{{detail.QualificationImg}}" |
|
mode="aspectFill" |
|
catch:tap="handlePreview" |
|
data-url="{{detail.QualificationImg}}" |
|
> |
|
<view class="preview">预览</view> |
|
</image> |
|
<image |
|
class="photo" |
|
src="{{detail.PositionImg}}" |
|
mode="aspectFill" |
|
catch:tap="handlePreview" |
|
data-url="{{detail.PositionImg}}" |
|
> |
|
<view class="preview">预览</view> |
|
</image> |
|
</view> |
|
</view> |
|
<view class="row"> |
|
<view class="label">所在医院</view> |
|
<view class="content">{{detail.HospitalName}}</view> |
|
</view> |
|
</view> |
|
<view class="footer"> |
|
<view class="cancel" bind:tap="handleReject">驳回</view> |
|
<view class="submit" bind:tap="handleResolve">通过</view> |
|
</view> |
|
</view> |
|
|
|
<van-dialog use-slot show="{{ show }}" bind:close="onClose" show-confirm-button="{{false}}"> |
|
<view class="dialog"> |
|
<view class="d-title">确认通过{{detail.Name}}医生的审核信息?</view> |
|
<view class="btn1" bind:tap="handleSubmit"> |
|
<view class="title">直接通过</view> |
|
<view class="explanation">您将成为{{detail.Name}}医生的直接上级医生</view> |
|
</view> |
|
<view wx:if="{{userInfo.DoctorLevel>=3}}" class="btn2" bind:tap="handleSetDoctor"> |
|
<view class="title">指派核心医生后通过</view> |
|
<view class="explanation">被指派医生将帮您提前审核病历</view> |
|
</view> |
|
<view class="cancel" bind:tap="handleDialogClose">取消</view> |
|
</view> |
|
</van-dialog> |
|
|
|
<!-- 审核驳回 --> |
|
<van-dialog |
|
custom-style="background:transparent" |
|
use-slot |
|
width="90vw" |
|
show="{{ showReject }}" |
|
showCancelButton |
|
confirm-button-color="rgba(0, 180, 197, 1)" |
|
before-close="{{onBeforeReject}}" |
|
> |
|
<view class="reject"> |
|
<image class="r-badge" src="{{imageUrl}}icon-reject.png?t={{Timestamp}}"></image> |
|
<view class="r-container"> |
|
<view class="title">确认审核不通过?</view> |
|
<view class="tip">请选择驳回原因</view> |
|
<view class="select-wrap"> |
|
<view class="btn" bind:tap="handleAddReject" data-value="资料不符合要求">资料不符合要求</view> |
|
<view class="btn" bind:tap="handleAddReject" data-value="地区不合适">地区不合适</view> |
|
</view> |
|
<textarea model:value="{{RejectReason}}" auto-height class="content" placeholder="请输入"></textarea> |
|
</view> |
|
</view> |
|
</van-dialog>
|
|
|