From b44f83b43776e69429e48d4f1fe597e4708fe3d4 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期二, 09 十二月 2025 10:55:39 +0800
Subject: [PATCH] 1.南洋电缆BI大屏数据修改
---
src/views/procurementManagement/invoiceEntry/index.vue | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/views/procurementManagement/invoiceEntry/index.vue b/src/views/procurementManagement/invoiceEntry/index.vue
index 03e1f98..af993f9 100644
--- a/src/views/procurementManagement/invoiceEntry/index.vue
+++ b/src/views/procurementManagement/invoiceEntry/index.vue
@@ -161,7 +161,7 @@
prop: "contractAmount",
width:200,
formatData: (val) => {
- return val ? parseFloat(val).toFixed(2) : 0;
+ return val ? parseFloat(val).toFixed(5) : 0;
},
},
{
@@ -169,7 +169,7 @@
prop: "receiptPaymentAmount",
width:200,
formatData: (val) => {
- return val ? parseFloat(val).toFixed(2) : 0;
+ return val ? parseFloat(val).toFixed(5) : 0;
},
},
{
@@ -177,7 +177,7 @@
prop: "unReceiptPaymentAmount",
width:200,
formatData: (val) => {
- return val ? parseFloat(val).toFixed(2) : 0;
+ return val ? parseFloat(val).toFixed(5) : 0;
},
},
// {
--
Gitblit v1.9.3