From 900f20d6734e0dff667ccfb26dca7d1fc173f01e Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期四, 23 四月 2026 09:33:33 +0800
Subject: [PATCH] feat(salesLedger): 将产品分类和规格型号改为输入框
---
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