页面调整

This commit is contained in:
曹磊 2024-07-19 15:19:52 +08:00
parent c4855b2b03
commit d66d79147d
5 changed files with 23 additions and 24 deletions

View File

@ -177,8 +177,7 @@
</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" v-if="order.taxiMoney">{{order.taxiMoney}}</view> <view class="add-con-cont">{{order.taxiMoney}}</view>
<view class="add-con-cont" v-else>-</view>
</view> </view>
<view class="jusitify-line-end add-lin"></view> <view class="jusitify-line-end add-lin"></view>
<view class="justify-title-nav"> <view class="justify-title-nav">
@ -197,13 +196,12 @@
</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.priceMarkup}}</text></view> <view class="add-con-cont"><text style=" font-weight: bold;">{{order.massageMoney}}</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" v-if="order.taxiMoney"><text>{{order.taxiMoney}}</text></view> <view class="add-con-cont"><text>{{order.taxiMoney}}</text></view>
<view class="add-con-cont" v-else>-</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>
@ -361,14 +359,14 @@
class="dingshi"> class="dingshi">
修改订单 修改订单
</u-button> --> </u-button> -->
<u-button @click="zhifu(order)" shape="circle" :custom-style="customStyle2" :hair-line="false" <u-button @click="zhifu(order)" :custom-style="customStyle2" shape="circle" :plain="true"
class="btns">立即支付 class="btns">立即支付
</u-button> </u-button>
<u-button :custom-style="customStyle2" shape="circle" :plain="true" @click="goChat" <u-button @click="goChat" :custom-style="customStyle2" shape="circle" :plain="true"
class="btns">联系客服</u-button> class="btns">联系客服</u-button>
</view> </view>
<view class="showBtn tabber" v-if="order.status ==2"> <view class="showBtn tabber" v-if="order.status ==2">
<u-button @click="cancelOrder(order)" shape="circle" :custom-style="customStyle" :hair-line="false"> <u-button @click="cancelOrder(order)" :custom-style="customStyle" shape="circle" :hair-line="false">
取消订单 取消订单
</u-button> </u-button>
<u-button <u-button

View File

@ -267,10 +267,10 @@
</view> </view>
<view class="flex justify-between jusitify-line"> <view class="flex justify-between jusitify-line">
<view class="line-word">订单费用</view> <view class="line-word">订单费用</view>
<view class="line-word-r" v-if="order.oldPriceMarkup==null"><text <view class="line-word-r" v-if="order.oldMassageMoney==null"><text
style="font-size: 26rpx;font-weight: bold;">{{order.priceMarkup}}</text></view> style="font-size: 26rpx;font-weight: bold;">{{order.massageMoney}}</text></view>
<view class="line-word-r" v-else><text <view class="line-word-r" v-else><text
style="font-size: 26rpx;font-weight: bold;">{{order.oldPriceMarkup}}</text></view> style="font-size: 26rpx;font-weight: bold;">{{order.oldMassageMoney}}</text></view>
</view> </view>
@ -550,7 +550,7 @@
class="btns"> class="btns">
提前结束 提前结束
</u-button> </u-button>
<u-button <u-button v-if="order.addNum==null"
shape="circle" :plain="true" shape="circle" :plain="true"
@tap="saveJZ(order.ordersMassageList[0].massageType.massageTypeId)" @tap="saveJZ(order.ordersMassageList[0].massageType.massageTypeId)"
class="btns"> class="btns">

View File

@ -177,8 +177,8 @@
<view class="add-con-title">全程距离</view> <view class="add-con-title">全程距离</view>
<view class="add-con-cont">{{order.km}}km</view> <view class="add-con-cont">{{order.km}}km</view>
</view> </view>
<view class="flex justify-between add-lin" v-if="order.taxiMoney"> <view class="flex justify-between add-lin">
<view class="add-con-title">出行交通费用</view> <view class="add-con-title">出行费用</view>
<view class="add-con-cont">{{order.taxiMoney}}</view> <view class="add-con-cont">{{order.taxiMoney}}</view>
</view> </view>
<view class="jusitify-line-end"></view> <view class="jusitify-line-end"></view>
@ -210,10 +210,9 @@
<text style="font-weight: bold;">{{order.massageMoney}}</text> <text style="font-weight: bold;">{{order.massageMoney}}</text>
</view> </view>
</view> </view>
<view class="flex justify-between add-lin" v-if="order.taxiMoney"> <view class="flex justify-between add-lin">
<view class="add-con-title">出行费用</view> <view class="add-con-title">出行费用</view>
<view class="add-con-cont" v-if="order.taxiMoney"><text style="font-weight: bold;">{{order.taxiMoney}}</text></view> <view class="add-con-cont"><text style="font-weight: bold;">{{order.taxiMoney}}</text></view>
<view class="add-con-cont" v-else>-</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 File

@ -132,12 +132,13 @@
</view> </view>
<view class="gengduoShow"> <view class="gengduoShow">
<u-button <u-button
v-if="item.addNum==null&&item.oldOrdersId==null" v-if="item.addNum==null&&item.isSupplement==null&&item.isSupplement!=2"
:custom-style="customStyle" shape="circle" :plain="true" :custom-style="customStyle" shape="circle" :plain="true"
class="btns" class="btns"
@click="cancelOrder(item)"> @click="goNav('/my/order/pay?ordersId='+item.ordersId)">
取消订单 服务升级
</u-button> </u-button>
<u-button :custom-style="customStyle1" class="btns" shape="circle" :plain="true" <u-button :custom-style="customStyle1" class="btns" shape="circle" :plain="true"
@click="goNav('/my/wallet/index?artificerId='+item.artificerId+'&ordersId='+item.ordersId,item)"> @click="goNav('/my/wallet/index?artificerId='+item.artificerId+'&ordersId='+item.ordersId,item)">
充值 充值
@ -153,8 +154,9 @@
<view @click="goNav('/my/order/pay?ordersId='+item.ordersId)" class="gengduoBtn"> <view @click="goNav('/my/order/pay?ordersId='+item.ordersId)" class="gengduoBtn">
联系客服 联系客服
</view> </view>
<view @click="goNav('/my/order/pay?ordersId='+item.ordersId)" class="gengduoBtn"> <view v-if="item.addNum==null&&item.oldOrdersId==null"
服务升级 @click="cancelOrder(item)" class="gengduoBtn">
取消订单
</view> </view>
<view @click="goToushu('/my/order/complain?ordersId='+item.ordersId + '&byUserId=' + item.artificerUserId + '&byuserName=' + item.artificerName)" class="gengduoBtn"> <view @click="goToushu('/my/order/complain?ordersId='+item.ordersId + '&byUserId=' + item.artificerUserId + '&byuserName=' + item.artificerName)" class="gengduoBtn">
去投诉 去投诉

View File

@ -252,12 +252,12 @@ import permision from "@/components/permission.js";
{ {
id: 4, id: 4,
name: "", name: "",
value: "资深", value: "专家",
}, },
{ {
id: 5, id: 5,
name: "", name: "",
value: "专家", value: "资深",
}, },
], ],
technicianType:3, technicianType:3,