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.
46 lines
1.3 KiB
46 lines
1.3 KiB
2 months ago
|
<slot bind:tap="handleShow"></slot>
|
||
|
|
||
|
<van-popup
|
||
|
wx:if="{{show}}"
|
||
|
bind:click-overlay="handleCancel"
|
||
|
round
|
||
|
z-index="{{100000}}"
|
||
|
show="{{ true }}"
|
||
|
custom-style="background:transparent;"
|
||
|
safe-area-inset-bottom="{{false}}"
|
||
|
root-portal
|
||
|
>
|
||
|
<view class="popup">
|
||
|
<view class="container">
|
||
|
<view class="title">医生介绍</view>
|
||
|
<view class="user">
|
||
|
<image class="avatar" src="{{doctorInfo.doctorAvatar}}"></image>
|
||
|
<view class="wrap">
|
||
|
<view class="name">{{doctorInfo.doctorName}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="row">
|
||
|
<view class="label">所在医院</view>
|
||
|
<view class="col">
|
||
|
<view class="content">{{doctorInfo.hospitalName}}</view>
|
||
|
<view class="tag">{{doctorInfo.hospitalClassificationName}}{{doctorInfo.hospitalLevelName}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="row">
|
||
|
<view class="label">医生简介</view>
|
||
|
<view class="col">
|
||
|
<view class="content">{{doctorInfo.doctorIntroduce || '--'}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="footer" bind:tap="handleUnbind">解绑此医生</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<image
|
||
|
wx:if="{{params.close}}"
|
||
|
class="close"
|
||
|
src="{{imageUrl}}icon25.png?t={{Timestamp}}"
|
||
|
bind:tap="handleCancel"
|
||
|
></image>
|
||
|
</van-popup>
|