This commit is contained in:
kbing1981 2024-06-29 17:55:34 +08:00
parent 4c4b85bda4
commit 06c256cb55
1 changed files with 35 additions and 19 deletions

View File

@ -15,7 +15,7 @@
</view>
<view class="u-flex-1 margin-left-sm">
<view class="flex head-title-right">
<view class="margin-right-xs text-df u-skeleton-fillet head-title">
<view class="margin-right-xs pay-word u-skeleton-fillet head-title">
{{order.oldEntryName}}
</view>
<view class="zhuangtai">
@ -58,21 +58,21 @@
</view>
<view class="" style="background-color: #ffffff;border-radius: 24rpx;margin-top: 24rpx;padding: 29rpx;">
<view class="" v-if="order.artificer">
<view class="flex align-center justify-between">
<view class="" style="color: #999;font-size: 26rpx;">下单人</view>
<view style="color: #333;font-size: 26rpx;">
<view class="flex align-center justify-between jusitify-line">
<view class="line-word">下单人</view>
<view class="line-word-r">
{{order.userName}}
</view>
</view>
<view class="flex align-center justify-between" style="margin-top: 19rpx;">
<view class="" style="color: #999;font-size: 26rpx;">联系方式</view>
<view style="color: #333;font-size: 26rpx;">
<view class="flex align-center justify-between jusitify-line">
<view class="line-word">联系方式</view>
<view class="line-word-r">
{{order.phone ? order.phone.substring(0,3) + '****' + order.phone.substring(7,11) : ''}}
</view>
</view>
<view class="serverAddress">
<view style="color: #999;font-size: 26rpx;margin-top: 19rpx;">服务地址</view>
<view style="color: #333333;margin-top: 8rpx;font-size: 26rpx;width: 73%;">{{order.address}}</view>
<view class="serverAddress jusitify-line">
<view class="line-word">服务地址</view>
<view class="line-word-r" style="width: 75%; text-align: right;">{{order.address}}</view>
</view>
</view>
</view>
@ -91,7 +91,7 @@
@click="bindphone(order.artificer.phone)"></image> -->
<!-- <image src="../../static/img/phone.png" class="phone-pay"
@click="bindphone(order.artificer.phone)"></image> -->
<view>{{order.technicianType=='3'?'新手':order.technicianType=='4'?'专家':'资深'}}</view>
<view class="level_button">{{order.technicianType=='3'?'新手':order.technicianType=='4'?'专家':'资深'}}</view>
</view>
<view class="flex align-center flex-wrap" v-if="order.artificer.ordersCount">
<view class="margin-right">
@ -1834,7 +1834,10 @@
background: linear-gradient(90deg, #019C88, #28BA92, #35C495);
}
.zhuangtai{
padding: 5rpx 23rpx;
border: 1px solid #029D88;
color: #029D88;
border-radius: 30rpx;
}
.head-title-right{
display: flex;
@ -1920,8 +1923,8 @@
}
.pay-ding-top{
width: 100%;
height: 80rpx;
background-image: linear-gradient(to bottom, rgba(8, 162, 138, 0.5), #fff);
height: 100rpx;
background-image: linear-gradient(to bottom, rgba(219, 242, 238, 0.9), #fff);
border-top-left-radius: 24rpx;
border-top-right-radius: 24rpx;
padding: 0px 29rpx;
@ -1937,14 +1940,15 @@
height: 44rpx;
}
.d-title{
font-weight: 400;
font-size: 25rpx;
font-weight: 550;
font-size: 30rpx;
color: #333333;
}
.d-touxiang{
width: 46rpx;
height: 46rpx;
width: 55rpx;
height: 55rpx;
border-radius: 50%;
border: 1px solid #f2fffd;
}
.money-pay-jia{
font-weight: 400;
@ -1987,9 +1991,9 @@
}
.pay-title{
font-weight: bold;
font-size: 28rpx;
font-size: 32rpx;
color: #333333;
margin-bottom: 5px;
margin-bottom: 12px;
}
page {
background: #f7f7f7;
@ -2168,4 +2172,16 @@
justify-content: space-between;
align-items: center;
}
.pay-word{
font-size: 30rpx;
}
.jusitify-line{
height: 80rpx;
}
.line-word{
color: #999;
}
.line-word-r{
color: #888;
}
</style>