|
|
@@ -25,7 +25,7 @@
|
|
|
<view class="detail-header">
|
|
|
<view class="status-row">
|
|
|
<text class="status-title">{{ displayStatusText }}</text>
|
|
|
- <text class="status-price">¥{{ orderDetail.price }}</text>
|
|
|
+ <text class="status-price">¥{{ orderDetail.fulfillmentCommission }}</text>
|
|
|
</view>
|
|
|
<!-- 进度条区域 -->
|
|
|
<view class="progress-bar">
|
|
|
@@ -488,7 +488,7 @@ export default {
|
|
|
currentClockIn: null,
|
|
|
currentStep: 0,
|
|
|
orderDetail: {
|
|
|
- type: 1, price: '0.00', timeLabel: '服务时间', time: '',
|
|
|
+ type: 1, fulfillmentCommission: '0.00', timeLabel: '服务时间', time: '',
|
|
|
petAvatar: '/static/dog.png', petName: '', petBreed: '',
|
|
|
serviceTag: '', startLocation: '', startAddress: '', endAddress: '',
|
|
|
customerPhone: '', serviceContent: '', remark: '',
|
|
|
@@ -622,7 +622,7 @@ export default {
|
|
|
this.orderStatus = order.status || 2
|
|
|
this.orderDetail = {
|
|
|
type: this.orderType,
|
|
|
- price: (order.price / 100).toFixed(2),
|
|
|
+ fulfillmentCommission: (order.price / 100).toFixed(2),
|
|
|
timeLabel: isRoundTrip ? '取货时间' : '服务时间',
|
|
|
time: order.serviceTime || '',
|
|
|
petAvatar: '/static/dog.png',
|
|
|
@@ -991,7 +991,7 @@ page {
|
|
|
font-weight: bold;
|
|
|
}
|
|
|
|
|
|
-.status-price {
|
|
|
+.status-fulfillmentCommission {
|
|
|
font-size: 40rpx;
|
|
|
font-weight: bold;
|
|
|
}
|