49 lines
1.9 KiB
Plaintext
49 lines
1.9 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">
|
||
<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">元</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
<view class="bottom">
|
||
<text class="bottom_txt">
|
||
提示:服务开通后,患者可以通过快速问诊找到您,增加您的曝光度。
|
||
1、快速问诊价格为平台统一定价;
|
||
2、接诊后{{config.duration}}分钟内和患者{{config.times_number==0?'无限':config.times_number}}次沟通。
|
||
</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" />
|
||
</view> |