|
|
@@ -6,7 +6,7 @@
|
|
|
<text class="time">待支付</text>
|
|
|
<view class="price-box">
|
|
|
<text class="unit">¥</text>
|
|
|
- <text class="num">{{order ? (Number(order.payMoney) || 0).toFixed(2) : "0.00"}}</text>
|
|
|
+ <text class="num">{{order ? (Number(order.payPrice) || 0).toFixed(2) : "0.00"}}</text>
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
@@ -52,9 +52,9 @@
|
|
|
<text class="text">{{ formattedDate}} </text>
|
|
|
</view>
|
|
|
<view class="item">
|
|
|
- <text class="label">订单金额</text>
|
|
|
+ <text class="label">实付金额</text>
|
|
|
<text class="text"
|
|
|
- v-if="order!=null">{{order ? (Number(order.totalPrice) || 0).toFixed(2) : "0.00"}}</text>
|
|
|
+ v-if="order!=null">{{order ? (Number(order.payPrice) || 0).toFixed(2) : "0.00"}}</text>
|
|
|
</view>
|
|
|
<view class="item">
|
|
|
<text class="label">优惠券</text>
|