This commit is contained in:
kbing1981 2024-07-03 17:04:55 +08:00
parent 43de99ab7b
commit d75f968020
2 changed files with 25 additions and 13 deletions

View File

@ -203,16 +203,15 @@
</view> </view>
<view class="flex justify-between add-lin"> <view class="flex justify-between add-lin">
<view class="add-con-title"">订单费用</view> <view class="add-con-title"">订单费用</view>
<view class="add-con-cont"><text>{{order.price}}</text></view>
</view>
<view>
<view class="add-con-title">出行费用</view>
<view class="add-con-cont"><text <view class="add-con-cont"><text
style="font-size: 26rpx; font-weight: bold;">{{order.price}}</text></view> >{{order.taxiMoney}}</text></view>
</view> </view>
<view class="flex justify-between add-lin"> <view class="flex justify-between add-lin">
<view class="add-con-title"">出行费用</view> <view class="add-con-title">优惠券</view>
<view class="add-con-cont"><text
style="font-weight: bold;">{{order.taxiMoney}}</text></view>
</view>
<view class="flex justify-between add-lin">
<view class="add-con-title"">优惠券</view>
<view class="add-con-cont" style="color: #F93731;" v-if="order.couponMoney"> <view class="add-con-cont" style="color: #F93731;" v-if="order.couponMoney">
-<text style="font-weight: bold;">{{order.couponMoney}}</text></view> -<text style="font-weight: bold;">{{order.couponMoney}}</text></view>
<view class="" v-else>-</view> <view class="" v-else>-</view>

View File

@ -7,7 +7,7 @@
<view class="bgImg u-skeleton-fillet" v-if="order.ordersMassageList && order.ordersMassageList.length > 0" <view class="bgImg u-skeleton-fillet" v-if="order.ordersMassageList && order.ordersMassageList.length > 0"
style="padding: 0 29rpx;"> style="padding: 0 29rpx;">
<view class="head-top"> <view class="head-top">
<view class="pay-title" style="">服务项目1111</view> <view class="pay-title">服务项目1111</view>
<view class="flex justify-around"> <view class="flex justify-around">
<view class="" style="width: 160upx;height: 160upx;"> <view class="" style="width: 160upx;height: 160upx;">
<image :src="order.ordersMassageList[0].massageType.massageImg" <image :src="order.ordersMassageList[0].massageType.massageImg"
@ -15,7 +15,7 @@
</view> </view>
<view class="u-flex-1 margin-left-sm"> <view class="u-flex-1 margin-left-sm">
<view class="flex head-title-right"> <view class="flex head-title-right">
<view class="margin-right-xs text-df u-skeleton-fillet head-title"> <view class="head-text">
{{order.ordersMassageList[0].massageType.title}} {{order.ordersMassageList[0].massageType.title}}
</view> </view>
<view class="zhuangtai"> <view class="zhuangtai">
@ -94,7 +94,7 @@
<!-- <image src="../../static/img/phone.png" class="phone-pay" <!-- <image src="../../static/img/phone.png" class="phone-pay"
@click="bindphone(order.artificer.phone)"></image> --> @click="bindphone(order.artificer.phone)"></image> -->
</view> </view>
<view>{{order.technicianType=='3'?'新手':order.technicianType=='4'?'专家':'资深'}}</view> <view class="level_button">{{order.technicianType=='3'?'新手':order.technicianType=='4'?'专家':'资深'}}</view>
<!-- <view class="flex align-center flex-wrap" v-if="order.artificer.ordersCount"> <!-- <view class="flex align-center flex-wrap" v-if="order.artificer.ordersCount">
<view class="margin-right"> <view class="margin-right">
<image src="../../static/images/start.png" style="width: 24rpx;height: 22rpx;"> <image src="../../static/images/start.png" style="width: 24rpx;height: 22rpx;">
@ -1731,13 +1731,13 @@
} }
.zhuangtai{ .zhuangtai{
color: #029D88; color: #029D88;
font-weight: bold;
} }
.head-title-right{ .head-title-right{
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
font-weight: bold;
} }
.head-title{ .head-title{
margin-top: -2px;display: inline-block; margin-top: -2px;display: inline-block;
@ -1883,9 +1883,9 @@
} }
.pay-title{ .pay-title{
font-weight: bold; font-weight: bold;
font-size: 28rpx; font-size: 32rpx;
color: #333333; color: #333333;
margin-bottom: 5px; margin-bottom: 8px;
} }
page { page {
background: #f7f7f7; background: #f7f7f7;
@ -2064,4 +2064,17 @@
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
} }
.head-text{
font-size:30rpx;
}
.zhuangtai{
color: #029D88;
}
.level_button{
padding: 3rpx 13rpx;
background: linear-gradient(to right, #fe9131, #ff9869);
border-radius: 16rpx 16rpx 16rpx 1rpx ;
color: #fff;
font-size: 12px;
}
</style> </style>