From 4b3024e8fa2ce27a2e0b408778d4e62cc570b8b4 Mon Sep 17 00:00:00 2001 From: maven <2163098428@qq.com> Date: 星期四, 10 七月 2025 17:00:37 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/dev' into dev --- src/views/salesManagement/invoiceRegistration/index.vue | 24 +++++++++++++----------- 1 files changed, 13 insertions(+), 11 deletions(-) diff --git a/src/views/salesManagement/invoiceRegistration/index.vue b/src/views/salesManagement/invoiceRegistration/index.vue index f229f81..0104fd1 100644 --- a/src/views/salesManagement/invoiceRegistration/index.vue +++ b/src/views/salesManagement/invoiceRegistration/index.vue @@ -125,39 +125,47 @@ label="閿�鍞悎鍚屽彿" prop="salesContractNo" show-overflow-tooltip + width="200" /> <el-table-column label="瀹㈡埛鍚堝悓鍙�" prop="customerContractNo" + width="200" show-overflow-tooltip /> <el-table-column label="瀹㈡埛鍚嶇О" prop="customerName" show-overflow-tooltip + width="240" /> <el-table-column label="涓氬姟鍛�" prop="salesman" show-overflow-tooltip /> <el-table-column label="椤圭洰鍚嶇О" prop="projectName" show-overflow-tooltip + width="200" /> <el-table-column label="鍚堝悓閲戦(鍏�)" prop="contractAmount" show-overflow-tooltip :formatter="formattedNumber" + width="120" + /> <el-table-column label="宸插紑绁ㄩ噾棰�(鍏�)" prop="invoiceTotal" show-overflow-tooltip :formatter="formattedNumber" + width="120" /> <el-table-column label="鏈紑绁ㄩ噾棰�(鍏�)" prop="noInvoiceAmountTotal" show-overflow-tooltip + width="120" > <template #default="{ row, column }"> <el-text type="danger"> @@ -306,15 +314,12 @@ :formatter="formattedNumber" width="150" /> - <el-table-column label="鏈寮�绁ㄦ暟" prop="currentInvoiceNum"> + <el-table-column label="鏈寮�绁ㄦ暟" prop="currentInvoiceNum" width="150"> <template #default="scope"> - <el-input - type="number" - :step="0.1" - min="0" + <el-input-number :step="0.1" :min="0" style="width: 100%" v-model="scope.row.currentInvoiceNum" @blur="invoiceNumBlur(scope.row)" - ></el-input> + ></el-input-number> </template> </el-table-column> <el-table-column @@ -323,13 +328,10 @@ width="150" > <template #default="scope"> - <el-input - type="number" - :step="0.01" - min="0" + <el-input-number :step="0.01" :min="0" style="width: 100%" v-model="scope.row.currentInvoiceAmount" @blur="invoiceAmountBlur(scope.row)" - ></el-input> + ></el-input-number> </template> </el-table-column> <el-table-column label="鏈紑绁ㄦ暟" prop="noInvoiceNum" width="100"> -- Gitblit v1.9.3