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.
|
|
|
<van-popup
|
|
|
|
wx:if="{{show}}"
|
|
|
|
bind:click-overlay="handleCancel"
|
|
|
|
round
|
|
|
|
z-index="{{100000}}"
|
|
|
|
show="{{ true }}"
|
|
|
|
custom-style="background:transparent;"
|
|
|
|
position="{{params.position || 'center'}}"
|
|
|
|
safe-area-inset-bottom="{{false}}"
|
|
|
|
root-portal
|
|
|
|
>
|
|
|
|
<view
|
|
|
|
class="popup1"
|
|
|
|
style="background: url('{{imageUrl}}bg4.png?t={{Timestamp}}') no-repeat top center/100% 304rpx"
|
|
|
|
wx:if="{{type==='popup1'}}"
|
|
|
|
>
|
|
|
|
<view class="container">
|
|
|
|
<view class="user">
|
|
|
|
<button class="avatar-wrapper">
|
|
|
|
<image class="avatar" src="{{params.Img}}"></image>
|
|
|
|
</button>
|
|
|
|
<view class="wrap">
|
|
|
|
<view class="nickname">{{params.Name}}医生</view>
|
|
|
|
<view class="hostipal">
|
|
|
|
{{params.HospitalName}}
|
|
|
|
<view class="tag">{{params.HospitalClassificationName}}{{params.HospitalLevel}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="popup2" wx:if="{{type==='popup2'}}">
|
|
|
|
<image class="p-img" src="{{imageUrl}}bg5.png?t={{Timestamp}}" show-menu-by-longpress></image>
|
|
|
|
</view>
|
|
|
|
<view class="popup3" wx:if="{{type==='popup3'}}">
|
|
|
|
<image class="p-img" src="{{imageUrl}}bg6.png?t={{Timestamp}}" show-menu-by-longpress></image>
|
|
|
|
</view>
|
|
|
|
<view class="popup4" wx:if="{{type==='popup4'}}">
|
|
|
|
<image class="p-img" src="{{imageUrl}}bg7.png?t={{Timestamp}}" show-menu-by-longpress></image>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<image
|
|
|
|
wx:if="{{params.close}}"
|
|
|
|
class="close"
|
|
|
|
src="{{imageUrl}}icon11.png?t={{Timestamp}}"
|
|
|
|
bind:tap="handleCancel"
|
|
|
|
></image>
|
|
|
|
</van-popup>
|