62 lines
2.3 KiB
Plaintext
62 lines
2.3 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">
|
|
<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 }}"
|
|
bind:change="onChange" />
|
|
</view>
|
|
</view>
|
|
<view class="switch_box_note">{{ note }}</view>
|
|
</view>
|
|
<view class="help">
|
|
<van-cell size="large" url="/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="{{ info.inquiry_price }}" placeholder="请输入问诊单价" />
|
|
<text class="price" decode="true"> 元</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="bottom">
|
|
<text class="bottom_txt">
|
|
提示:服务开启后,您将有机会接收到平台自动分配的在线患者快速问诊订单
|
|
1、快速问诊价格为平台统一设定
|
|
2、快速问诊服务时间为{{config.duration}}分钟,期间不限制交流次数
|
|
</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> |