diff --git a/src/views/system/order/index.vue b/src/views/system/order/index.vue
index 986144f..422e076 100644
--- a/src/views/system/order/index.vue
+++ b/src/views/system/order/index.vue
@@ -211,7 +211,7 @@
停车点外调度费:{{ formatFee(scope.row.manageFee) }}
- 订单金额:{{ formatFee(scope.row.totalFee) }}
+ 订单金额:{{ formatFee(scope.row.payFee) }}
退款金额:
@@ -857,9 +857,9 @@ export default {
},
calculateSettlementAmount(row) {
// 计算结算金额 = 总费用 - 退款金额
- const totalFee = row.totalFee || 0;
+ const payFee = row.payFee || 0;
const totalRefundFee = row.totalRefundFee || 0;
- return totalFee - totalRefundFee;
+ return payFee - totalRefundFee;
},
calculateNetFee() {
// 计算总退款