49 lines
1.5 KiB
Plaintext
49 lines
1.5 KiB
Plaintext
<te-nav-bar navbar-data='{{navbarData}}' ></te-nav-bar>
|
|
<view class="container">
|
|
<view class="img_box">
|
|
<view class="img_content">
|
|
<image class="case_img"
|
|
src="https://gdxz-hospital.oss-cn-chengdu.aliyuncs.com/applet/doctor/static/images/prescription_demo.png"
|
|
mode="widthFix"
|
|
/>
|
|
</view>
|
|
</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">
|
|
<van-button round type="primary" bind:click="submit">
|
|
<text decode="true"> 通过 </text>
|
|
</van-button>
|
|
</view>
|
|
</view>
|
|
|
|
<van-popup show="{{ bohuishow }}" bind:close="onClose">
|
|
<view class="pop">
|
|
<van-cell 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">确认驳回</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>
|