3.28更新
This commit is contained in:
parent
a479ddf92e
commit
518b1ccb3d
@ -74,4 +74,5 @@
|
||||
color: #FF0000;
|
||||
letter-spacing: 3rpx;
|
||||
font-weight: 600;
|
||||
word-break:break-all;
|
||||
}
|
||||
@ -2,7 +2,7 @@
|
||||
"usingComponents": {
|
||||
"te-nav-bar": "../../../../commpents/te_navbar/index",
|
||||
"van-field": "@vant/weapp/field/index",
|
||||
"van-stepper": "@vant/weapp/stepper/index",
|
||||
"van-icon": "@vant/weapp/icon/index",
|
||||
"van-button": "@vant/weapp/button/index"
|
||||
}
|
||||
}
|
||||
@ -1,18 +1,42 @@
|
||||
<te-nav-bar navbar-data='{{navbarData}}' ></te-nav-bar>
|
||||
<view class="checked_box">
|
||||
<view class="page">
|
||||
<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_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" />
|
||||
<van-icon name="arrow" color="#999" />
|
||||
</view>
|
||||
</view>
|
||||
<view class="price_steup_box_bottom">
|
||||
<view class="price_steup_box_bottom_title">问诊单价</view>
|
||||
<view class="price_steup_box_bottom_title">服务回合数</view>
|
||||
<view class="price_steup_box_bottom_num">
|
||||
<input class="weui-input" bindblur="onPriceChange" type="digit" value="{{ info.inquiry_price }}" placeholder="请输入问诊单价" />
|
||||
<text class="price">元</text>
|
||||
|
||||
<text class="price">不限制</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="checked_box">
|
||||
<view class="title">服务内容</view>
|
||||
<view class="price_steup_box" style="height:240rpx">
|
||||
<view class="price_steup_box_top">
|
||||
<view class="price_steup_box_top_title">服务周期</view>
|
||||
<view class="price_steup_box_top_stepper">
|
||||
<van-icon name="arrow" color="#999" />
|
||||
</view>
|
||||
</view>
|
||||
<view class="price_steup_box_bottom" style="border-bottom:0.5px solid #e7e7e7;padding-bottom: 25rpx;">
|
||||
<view class="price_steup_box_bottom_title">服务价格(元)</view>
|
||||
<view class="price_steup_box_bottom_num">
|
||||
|
||||
<text class="price">不限制</text>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="tips">建议服务价格设置为:单次图文*10次*5~8折</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="continueadd">继续添加服务内容</view>
|
||||
<view class="btn">保存</view>
|
||||
</view>
|
||||
|
||||
@ -1,6 +1,13 @@
|
||||
page{
|
||||
background-color: #F6F6F6;
|
||||
}
|
||||
.title{
|
||||
width:90vw;
|
||||
margin: 0 auto 20rpx;
|
||||
font-weight: 550;
|
||||
font-size: 32rpx;
|
||||
color: rgba(0,0,0,0.85);
|
||||
}
|
||||
.checked_box{
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
@ -27,7 +34,7 @@ page{
|
||||
justify-content: space-between;
|
||||
margin: 20rpx 20rpx 20rpx 30rpx;
|
||||
align-items: center;
|
||||
padding-bottom: 20rpx;
|
||||
padding-bottom: 30rpx;
|
||||
}
|
||||
.price_steup_box_bottom{
|
||||
position: relative;
|
||||
@ -41,10 +48,14 @@ page{
|
||||
font-size: 32rpx;
|
||||
color: #333;
|
||||
}
|
||||
.price{
|
||||
text-align: right!important;
|
||||
}
|
||||
.price_steup_box_bottom_num{
|
||||
flex: 1.5;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
text-align: right;
|
||||
align-items: flex-end;
|
||||
}
|
||||
.price_steup_box_top::after{
|
||||
position: absolute;
|
||||
@ -88,4 +99,39 @@ page{
|
||||
}
|
||||
.green{
|
||||
color:#3CC7C0;
|
||||
}
|
||||
.tips{
|
||||
margin:15rpx 30rpx;
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #E34D59;
|
||||
}
|
||||
.continueadd{
|
||||
|
||||
font-size: 30rpx;
|
||||
color: #3CC7C0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width:90vw;
|
||||
height: 80rpx;
|
||||
margin:160rpx auto 0;
|
||||
background: rgba(44,241,248,0.28);
|
||||
border-radius: 8rpx;
|
||||
}
|
||||
.btn{
|
||||
bottom:60rpx;
|
||||
position: fixed;
|
||||
font-size: 32rpx;
|
||||
color: #fff;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width:90vw;
|
||||
left:50%;
|
||||
transform: translate(-50%);
|
||||
height: 80rpx;
|
||||
margin:160rpx auto 0;
|
||||
background: #3CC7C0;
|
||||
border-radius: 8rpx;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user