From 2f7b6ebf7a5b0222512d718b229e078e7ac3e747 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期四, 21 五月 2026 10:27:30 +0800
Subject: [PATCH] 阳光彩印 1.web端设备巡检要求也可以上传图片
---
src/views/procurementManagement/invoiceEntry/components/ExpandTable.vue | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/views/procurementManagement/invoiceEntry/components/ExpandTable.vue b/src/views/procurementManagement/invoiceEntry/components/ExpandTable.vue
index d329768..43f42e6 100644
--- a/src/views/procurementManagement/invoiceEntry/components/ExpandTable.vue
+++ b/src/views/procurementManagement/invoiceEntry/components/ExpandTable.vue
@@ -62,7 +62,7 @@
prop: "taxInclusiveUnitPrice",
width:200,
formatData: (val) => {
- return val ? parseFloat(val).toFixed(2) : "-";
+ return val ? parseFloat(val).toFixed(3) : "-";
},
},
{
@@ -70,7 +70,7 @@
prop: "taxInclusiveTotalPrice",
width:200,
formatData: (val) => {
- return val ? parseFloat(val).toFixed(2) : "-";
+ return val ? parseFloat(val).toFixed(3) : "-";
},
},
{
@@ -78,7 +78,7 @@
prop: "taxExclusiveTotalPrice",
width:200,
formatData: (val) => {
- return val ? parseFloat(val).toFixed(2) : "-";
+ return val ? parseFloat(val).toFixed(3) : "-";
},
},
{
@@ -86,7 +86,7 @@
prop: "ticketsAmount",
width:200,
formatData: (val) => {
- return val ? parseFloat(val).toFixed(2) : "-";
+ return val ? parseFloat(val).toFixed(3) : "-";
},
},
{
@@ -98,7 +98,7 @@
prop: "futureTicketsAmount",
width:200,
formatData: (val) => {
- return val ? parseFloat(val).toFixed(2) : "-";
+ return val ? parseFloat(val).toFixed(3) : "-";
},
},
],
--
Gitblit v1.9.3