|
@@ -413,7 +413,9 @@
|
|
<div>
|
|
<div>
|
|
<span style="margin-right: 30px; font-size: 18px">订单总金额:{{ orderDetail.payAmount }}</span>
|
|
<span style="margin-right: 30px; font-size: 18px">订单总金额:{{ orderDetail.payAmount }}</span>
|
|
<span style="margin-right: 30px; font-size: 18px"
|
|
<span style="margin-right: 30px; font-size: 18px"
|
|
- >待收款金额:{{ orderDetail.payAmount - orderDetail.paidAmount }}</span
|
|
|
|
|
|
+ >待收款金额:{{
|
|
|
|
+ (Math.ceil(((orderDetail.payAmount || 0) - (orderDetail.paidAmount || 0)) * 100) / 100).toFixed(2)
|
|
|
|
+ }}</span
|
|
>
|
|
>
|
|
<span style="margin-right: 30px; font-size: 18px">已收款金额:{{ orderDetail.paidAmount }}</span>
|
|
<span style="margin-right: 30px; font-size: 18px">已收款金额:{{ orderDetail.paidAmount }}</span>
|
|
</div>
|
|
</div>
|