62 lines
2.1 KiB
Plaintext
62 lines
2.1 KiB
Plaintext
<te-nav-bar navbar-data='{{navbarData}}' ></te-nav-bar>
|
||
<view class="container">
|
||
<view class="checked_box">
|
||
<view class="price_steup_box">
|
||
<view class="price_steup_box_top">
|
||
<view class="price_steup_box_top_title">每日接诊数量</view>
|
||
<view class="price_steup_box_top_stepper">
|
||
<van-stepper value="{{ info.work_num_day }}" min="0" max="{{info.work_num_day > config.max_work_num_day?info.work_num_day:config.max_work_num_day}}" integer bind:change="onStepperChange" />
|
||
</view>
|
||
</view>
|
||
<view class="price_steup_box_bottom">
|
||
<van-cell size="large" custom-style="font-size:32rpx;border-radius: 20rpx;"
|
||
title="问诊单价(元)" is-link
|
||
border="{{false}}"
|
||
value="{{ amountText }}"
|
||
bindtap="onAmountPicker"
|
||
/>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
<view class="bottom">
|
||
<text class="bottom_txt">
|
||
提示:服务开启后,您将参与到平台爱心公益问诊活动中
|
||
1、从平台统一设定的多种公益问诊价格中选择您的公益问诊价格
|
||
2、接诊后,患者可与您在{{config.duration/60}}小时内进行{{config.times_number}}回合沟通
|
||
</text>
|
||
</view>
|
||
|
||
<view class="go">
|
||
<van-button color="#3CC7C0" bind:click="putDoctorInquiryConfig" custom-style="border-radius: 20rpx;font-size:30rpx;" type="primary" block>确定</van-button>
|
||
</view>
|
||
|
||
<t-picker
|
||
visible="{{amountVisible}}"
|
||
value="{{amountValue}}"
|
||
data-key="amount"
|
||
title="选择金额"
|
||
cancelBtn="取消"
|
||
confirmBtn="确认"
|
||
bindchange="onPickerChange"
|
||
bindpick="onColumnChange"
|
||
bindcancel="onPickerCancel"
|
||
>
|
||
<t-picker-item options="{{amounts}}"></t-picker-item>
|
||
</t-picker>
|
||
|
||
<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> |