54 lines
2.2 KiB
Plaintext
54 lines
2.2 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/index" 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">
|
||
<van-cell size="large" url="/Pages/yishi/onlinesetupprice/index" custom-style="font-size:32rpx;" title="每日接诊数量" is-link border="{{true}}" >
|
||
<view class="cell_value">
|
||
{{info.work_num_day}}
|
||
</view>
|
||
</van-cell>
|
||
<van-cell size="large" url="/Pages/yishi/onlinesetupprice/index" custom-style="font-size:32rpx;" title="问诊单价(元)" is-link border="{{false}}" >
|
||
<view class="cell_value">
|
||
{{info.inquiry_price}}元
|
||
</view>
|
||
</van-cell>
|
||
</view>
|
||
</view>
|
||
|
||
<view class="bottom">
|
||
<text class="bottom_txt">
|
||
提示:服务开通后,患者可以向您购买图文问诊进行问诊,接诊后需要与患者进行图文沟通
|
||
1、问诊价格每日仅限调整1次,每自然月仅限调整5次
|
||
2、单价修改后立即生效,不影响当日已生成的问诊订单
|
||
3、接诊后,患者可与您在{{config.duration/60}}小时内进行{{config.times_number}}个回合沟通
|
||
4、如有参加公益问诊活动,患者问诊订单价格以参加的公益问诊单价为准
|
||
</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>
|
||
|
||
<t-toast id="t-toast" />
|
||
</view> |