From 56158a98729ba25b04f7c80d88aafa59cc41a504 Mon Sep 17 00:00:00 2001
From: yuan <123@>
Date: 星期日, 29 三月 2026 22:40:10 +0800
Subject: [PATCH] feat(质量维护): 优化检测项目字段并移除内控值和默认值
---
src/views/qualityManagement/finalInspection/index.vue | 32 +++++++++++++++++++++++++++++++-
1 files changed, 31 insertions(+), 1 deletions(-)
diff --git a/src/views/qualityManagement/finalInspection/index.vue b/src/views/qualityManagement/finalInspection/index.vue
index db44222..c7df4e9 100644
--- a/src/views/qualityManagement/finalInspection/index.vue
+++ b/src/views/qualityManagement/finalInspection/index.vue
@@ -109,8 +109,24 @@
prop: "productName",
},
{
+ label: "鎵瑰彿",
+ prop: "batchNo",
+ },
+ {
+ label: "妫�鍝佹暟閲�",
+ prop: "inspectedQuantity",
+ },
+ {
+ label: "璇锋閮ㄩ棬",
+ prop: "manufacturingTeam",
+ },
+ {
label: "瑙勬牸鍨嬪彿",
prop: "model",
+ },
+ {
+ label: "UID鐮�",
+ prop: "uidNo",
},
{
label: "鍗曚綅",
@@ -156,7 +172,7 @@
label: "鎿嶄綔",
align: "center",
fixed: "right",
- width: 280,
+ width: 340,
operation: [
{
name: "缂栬緫",
@@ -175,6 +191,20 @@
}
},
{
+ name: "濉啓妫�楠岃褰�",
+ type: "text",
+ clickFun: (row) => {
+ openInspectionForm("edit", row);
+ },
+ disabled: (row) => {
+ if (row.inspectState == 1) return true;
+ if (row.checkName) {
+ return row.checkName !== userStore.nickName;
+ }
+ return false;
+ }
+ },
+ {
name: "闄勪欢",
type: "text",
clickFun: (row) => {
--
Gitblit v1.9.3