From 19a6ae22e635dc959e727f4f190e66dcd9309990 Mon Sep 17 00:00:00 2001
From: wuteng <419274783@qq.com>
Date: Fri, 6 Feb 2026 15:56:01 +0800
Subject: [PATCH] =?UTF-8?q?=E9=94=80=E8=B4=A6=E8=B4=A6=E5=8D=95=E9=87=91?=
=?UTF-8?q?=E9=A2=9D=E3=80=81=E5=B7=B2=E6=94=B6=E9=87=91=E9=A2=9D=E4=BF=9D?=
=?UTF-8?q?=E7=95=992=E4=BD=8D=E5=B0=8F=E6=95=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../panel/CancelAccountApplicationListPanel.vue | 4 ++--
.../emisSettleBill/panel/CancelAccountCheckListPanel.vue | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue b/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue
index 5f463bb2..9ba00188 100644
--- a/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue
+++ b/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue
@@ -72,13 +72,13 @@
- {{ scope.row.detailList.reduce((total, item) => total + (item.emisWaybill.freight || 0), 0) }}
+ {{ scope.row.detailList.reduce((total, item) => total + (item.emisWaybill.freight || 0), 0).toFixed(2) }}
- {{ scope.row.detailList.reduce((total, item) => total + (item.emisSettleSubBill.recedMoney || 0), 0) }}
+ {{ scope.row.detailList.reduce((total, item) => total + (item.emisSettleSubBill.recedMoney || 0), 0).toFixed(2) }}
diff --git a/src/views/emis/emisSettleBill/panel/CancelAccountCheckListPanel.vue b/src/views/emis/emisSettleBill/panel/CancelAccountCheckListPanel.vue
index 6ca5f949..6644299a 100644
--- a/src/views/emis/emisSettleBill/panel/CancelAccountCheckListPanel.vue
+++ b/src/views/emis/emisSettleBill/panel/CancelAccountCheckListPanel.vue
@@ -79,14 +79,14 @@
:show-overflow-tooltip="true" />
-
- {{ scope.row.detailList.reduce((total, item) => total + (item.emisWaybill.freight || 0), 0) }}
+
+ {{ scope.row.detailList.reduce((total, item) => total + (item.emisWaybill.freight || 0), 0).toFixed(2) }}
- {{ scope.row.detailList.reduce((total, item) => total + (item.emisSettleSubBill.recedMoney || 0), 0) }}
+ {{ scope.row.detailList.reduce((total, item) => total + (item.emisSettleSubBill.recedMoney || 0), 0).toFixed(2) }}