From 819cc8dd3c23a549025c79ed8b8556ccbb589f5c Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期三, 10 十二月 2025 15:07:54 +0800
Subject: [PATCH] 1.南洋电缆-出库时间修改

---
 src/views/salesManagement/invoiceRegistration/index.vue |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/views/salesManagement/invoiceRegistration/index.vue b/src/views/salesManagement/invoiceRegistration/index.vue
index 2777f6c..00cfc2c 100644
--- a/src/views/salesManagement/invoiceRegistration/index.vue
+++ b/src/views/salesManagement/invoiceRegistration/index.vue
@@ -361,7 +361,6 @@
                 disabled
                 v-model="scope.row.noInvoiceAmount"
                 :formatter="formattedInputNumber"
-                :precision="2"
                 :step="0.01"
               ></el-input>
             </template>
@@ -464,17 +463,17 @@
 
 const formattedNumber = (row, column, cellValue) => {
   if (cellValue == 0) {
-    return parseFloat(cellValue).toFixed(5);
+    return parseFloat(cellValue).toFixed(2);
   }
   if (cellValue) {
-    return parseFloat(cellValue).toFixed(5);
+    return parseFloat(cellValue).toFixed(2);
   } else {
     return cellValue;
   }
 };
 
 const formattedInputNumber = (value) => {
-  return value ? parseFloat(value).toFixed(5) : 0;
+  return value ? parseFloat(value).toFixed(2) : 0;
 };
 
 // 鏌ヨ鍒楄〃

--
Gitblit v1.9.3