67 lines
2.7 KiB
Plaintext
67 lines
2.7 KiB
Plaintext
<te-nav-bar navbar-data='{{navbarData}}' ></te-nav-bar>
|
||
<view class="container">
|
||
<view class="switch_box">
|
||
<view class="switch_box_top">
|
||
<view class="switch_box_item" bindtap="changeON">
|
||
<view class="switch_box_item_name">接诊开关</view>
|
||
<view class="switch_box_item_btn">
|
||
<van-switch
|
||
active-color="#3CC7C0"
|
||
inactive-color="#E7E7E7"
|
||
size="40rpx"
|
||
checked="{{ info.is_open==1 }}"
|
||
/>
|
||
</view>
|
||
</view>
|
||
<view class="switch_box_note">{{ note }}</view>
|
||
</view>
|
||
<view class="help">
|
||
<van-cell size="large" url="/user/pages/yishi/manual_detail/index?manual_id=5" custom-style="font-size:32rpx;" title="快速问诊操作手册" is-link border="{{false}}" />
|
||
</view>
|
||
</view>
|
||
|
||
<view class="checked_box">
|
||
<view class="price_title">价格设置</view>
|
||
<view class="price_steup_box">
|
||
<view class="price_steup_box_bottom">
|
||
<view class="price_steup_box_bottom_title">问诊单价</view>
|
||
<view class="price_steup_box_bottom_num">
|
||
<input class="weui-input" disabled bindblur="onPriceChange" type="digit" value="{{ config.inquiry_price }}" placeholder="请输入问诊单价" />
|
||
<text class="price" decode="true"> 元</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
<view class="bottom">
|
||
<text class="bottom_txt">
|
||
|
||
提示:服务开通后,患者可以通过快速问诊找到您
|
||
1、快速问诊价格为平台统一定价;
|
||
2、优先分配给好评率高、响应时间快的医生;
|
||
3、平台分配成功后,要求医生在<text style="color:#3CC7C0">5分钟内接诊 </text>,如5分钟内未接诊,将自动取消订单,消息列表中也将删除此订单;
|
||
4、接诊后{{config.duration}}分钟内,患者可以和您<text style="color:#3CC7C0">不限制回合数沟通</text>;
|
||
5、如果时间不允许请慎重开通快速问诊,出现两次漏接,平台将主动关闭您的此项服务。
|
||
|
||
</text>
|
||
</view>
|
||
|
||
<view class="go">
|
||
<van-button disabled="{{info.is_open!=1}}" bind:click="putDoctorInquiryConfig" color="#3CC7C0" custom-style="border-radius: 20rpx;font-size:30rpx;" type="primary" block>去接诊</van-button>
|
||
</view>
|
||
|
||
<van-toast id="van-toast" />
|
||
|
||
<t-dialog
|
||
visible="{{ sub_visible }}"
|
||
title="温馨提示"
|
||
content="您已关闭订阅消息通知,请点击“确认”按钮在设置中打开订阅通知。"
|
||
>
|
||
<view slot="cancel-btn" class="dialog dialog_cancel_btn" bindtap="subcancelDialog">
|
||
取消
|
||
</view>
|
||
<view slot="confirm-btn" class="dialog dialog_confirm_btn" bindtap="subconfirmDialog">
|
||
确定
|
||
</view>
|
||
</t-dialog>
|
||
</view> |