From 2ab68f3051300b3dc5c0edb5a53c505e401a08a3 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期五, 11 七月 2025 16:40:10 +0800
Subject: [PATCH] 过程检验、出厂检验编辑页面字段改下(检测结果项建议必填,不输入检测结果会展示空框)
---
src/views/salesManagement/invoiceRegistration/index.vue | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/views/salesManagement/invoiceRegistration/index.vue b/src/views/salesManagement/invoiceRegistration/index.vue
index e9dd49e..f5c293c 100644
--- a/src/views/salesManagement/invoiceRegistration/index.vue
+++ b/src/views/salesManagement/invoiceRegistration/index.vue
@@ -320,7 +320,7 @@
<template #default="scope">
<el-input-number :step="0.1" :min="0" style="width: 100%"
v-model="scope.row.currentInvoiceNum"
- @blur="invoiceNumBlur(scope.row)"
+ @change="invoiceNumBlur(scope.row)"
></el-input-number>
</template>
</el-table-column>
@@ -332,7 +332,7 @@
<template #default="scope">
<el-input-number :step="0.01" :min="0" style="width: 100%"
v-model="scope.row.currentInvoiceAmount"
- @blur="invoiceAmountBlur(scope.row)"
+ @change="invoiceAmountBlur(scope.row)"
></el-input-number>
</template>
</el-table-column>
@@ -539,6 +539,7 @@
"currentInvoiceAmount",
"noInvoiceNum",
"noInvoiceAmount",
+ "currentInvoiceNum",
]);
};
// 鎵撳紑寮规
--
Gitblit v1.9.3