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}}分钟,期间不限制交流次数
|
|
</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> |