已经支付的加价记录或者已扣款的超时记录展示在子单详情服务金额下面
This commit is contained in:
parent
91fabcef1e
commit
95d649f32a
|
|
@ -87,8 +87,20 @@
|
||||||
<text class="text-price" v-else>{{servDetail.serverMoney}}</text>
|
<text class="text-price" v-else>{{servDetail.serverMoney}}</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="text-sm text-gray margin-left-lg"
|
<view class="text-sm text-gray margin-left-lg"
|
||||||
|
v-if="servDetail.orderDetailId != null && servDetail.orderTimeoutRecords != null"
|
||||||
v-for="(item, index) in servDetail.orderTimeoutRecords">
|
v-for="(item, index) in servDetail.orderTimeoutRecords">
|
||||||
超时扣款:<text class="text-price margin-top-xs">-{{item.payMoney}}</text>[{{item.fineStatus == 1 ? '已扣款' : '未扣款'}}]
|
<text v-if="item.fineStatus === 1">加减费用:<text class="text-price margin-top-xs">-{{item.payMoney}}</text>
|
||||||
|
[
|
||||||
|
<text v-if="item.orderStatus === 0">接单</text>
|
||||||
|
<text v-else-if="item.orderStatus === 1">预约</text>
|
||||||
|
<text v-else-if="item.orderStatus === 2">上门</text>
|
||||||
|
<text v-else-if="item.orderStatus === 3">完单</text>
|
||||||
|
超时]
|
||||||
|
</text>
|
||||||
|
</view>
|
||||||
|
<view class="text-sm text-gray margin-left-lg" v-if="servDetail.orderDetailId != null && servDetail.financialChangeRecords != null"
|
||||||
|
v-for="(item, index) in servDetail.financialChangeRecords">
|
||||||
|
<text v-if="item.payStatus === 1">加减费用:<text class="text-price margin-top-xs">+{{item.changeMoney}}</text>[订单加价]</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<!-- 待服务列 -->
|
<!-- 待服务列 -->
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue