60 lines
1.9 KiB
Plaintext
60 lines
1.9 KiB
Plaintext
<te-nav-bar navbar-data='{{navbarData}}' ></te-nav-bar>
|
|
<view class="container">
|
|
<view class="img_box" wx:if="{{false}}">
|
|
<view class="img_content">
|
|
<image class="case_img"
|
|
src="{{prescription_img_oss_path}}"
|
|
mode="widthFix"
|
|
/>
|
|
<image class="doctor_sign_image"
|
|
src="{{doctor_sign_image}}"
|
|
mode="widthFix"
|
|
/>
|
|
</view>
|
|
</view>
|
|
<view class="imgbox">
|
|
<image src="{{prescription_img_oss_path}}" mode="widthFix" class="prescription"></image>
|
|
<image src="{{doctor_sign_image}}" mode="widthFix" class="doctorSign"></image>
|
|
</view>
|
|
<view class="button_group">
|
|
<view class="button_item">
|
|
<van-button round plain type="danger" bind:click="showPopup">
|
|
<text decode="true"> 驳回 </text>
|
|
</van-button>
|
|
</view>
|
|
<view class="button_item" bindtap="putPharmacistPrescriptionVerify" data-pharmacist_audit_status="1">
|
|
<van-button round type="primary" bind:click="submit">
|
|
<text decode="true"> 通过 </text>
|
|
</van-button>
|
|
</view>
|
|
</view>
|
|
<view style="height: 20rpx;">
|
|
|
|
</view>
|
|
|
|
<van-popup show="{{ bohuishow }}" bind:close="onClose">
|
|
<view class="pop">
|
|
<van-cell size="large" title="驳回理由:" is-link value="{{ resonText }}" bind:click="showReasonPopup"/>
|
|
<view class="pop_button">
|
|
<view class="pop_button_txt" bindtap="closePopup">取消</view>
|
|
<view class="pop_button_txt" bindtap="submitBohui" data-pharmacist_audit_status="2">确认驳回</view>
|
|
</view>
|
|
</view>
|
|
</van-popup>
|
|
|
|
<van-popup
|
|
show="{{ reasonshow }}"
|
|
position="bottom"
|
|
bind:close="onCloseReason"
|
|
>
|
|
<van-picker show-toolbar
|
|
title="请选择"
|
|
columns="{{ columns }}"
|
|
bind:cancel="onCancelReason"
|
|
bind:confirm="onConfirmReason" />
|
|
</van-popup>
|
|
|
|
<van-toast id="van-toast" />
|
|
|
|
</view>
|