From fce727e27b97bcdeb7b0ff3c489619205593c5b8 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期一, 21 七月 2025 11:40:52 +0800
Subject: [PATCH] 1.表格展示优化

---
 src/views/salesManagement/invoiceRegistration/index.vue |   13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/src/views/salesManagement/invoiceRegistration/index.vue b/src/views/salesManagement/invoiceRegistration/index.vue
index e9dd49e..908f318 100644
--- a/src/views/salesManagement/invoiceRegistration/index.vue
+++ b/src/views/salesManagement/invoiceRegistration/index.vue
@@ -2,7 +2,7 @@
   <div class="app-container">
     <div class="search_form">
       <el-form :inline="true" :model="searchForm">
-        <el-form-item label="寮�绁ㄧ櫥璁�">
+        <el-form-item label="瀹㈡埛鍚嶇О">
           <el-input
             v-model="searchForm.customerName"
             style="width: 240px"
@@ -81,7 +81,7 @@
               />
               <el-table-column label="鍗曚綅" prop="unit" width="70" />
               <el-table-column label="鏁伴噺" prop="quantity" width="70" />
-              <el-table-column label="绋庣巼(%)" prop="taxRate" width="70" />
+              <el-table-column label="绋庣巼(%)" prop="taxRate" width="80" />
               <el-table-column
                 label="鍚◣鍗曚环(鍏�)"
                 prop="taxInclusiveUnitPrice"
@@ -139,7 +139,7 @@
           show-overflow-tooltip
           width="240"
         />
-        <el-table-column label="涓氬姟鍛�" prop="salesman" show-overflow-tooltip />
+        <el-table-column label="涓氬姟鍛�" prop="salesman" show-overflow-tooltip width="90"/>
         <el-table-column
           label="椤圭洰鍚嶇О"
           prop="projectName"
@@ -319,8 +319,9 @@
           <el-table-column label="鏈寮�绁ㄦ暟" prop="currentInvoiceNum" width="180">
             <template #default="scope">
               <el-input-number :step="0.1" :min="0" style="width: 100%"
+															 :precision="2"
                 v-model="scope.row.currentInvoiceNum"
-                @blur="invoiceNumBlur(scope.row)"
+                @change="invoiceNumBlur(scope.row)"
               ></el-input-number>
             </template>
           </el-table-column>
@@ -331,8 +332,9 @@
           >
             <template #default="scope">
               <el-input-number :step="0.01" :min="0" style="width: 100%"
+															 :precision="2"
                 v-model="scope.row.currentInvoiceAmount"
-                @blur="invoiceAmountBlur(scope.row)"
+                @change="invoiceAmountBlur(scope.row)"
               ></el-input-number>
             </template>
           </el-table-column>
@@ -539,6 +541,7 @@
     "currentInvoiceAmount",
     "noInvoiceNum",
     "noInvoiceAmount",
+    "currentInvoiceNum",
   ]);
 };
 // 鎵撳紑寮规

--
Gitblit v1.9.3