From 533d1e4ae9ffeafdd9ff65ddcefd7bd005f7d78c Mon Sep 17 00:00:00 2001
From: ZN <zhang_12370@163.com>
Date: 星期三, 01 四月 2026 15:13:33 +0800
Subject: [PATCH] feat(生产管理): 增强BOM信息展示并调整工序配置

---
 src/views/productionManagement/productionProcess/index.vue |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/views/productionManagement/productionProcess/index.vue b/src/views/productionManagement/productionProcess/index.vue
index c76d835..9204c32 100644
--- a/src/views/productionManagement/productionProcess/index.vue
+++ b/src/views/productionManagement/productionProcess/index.vue
@@ -106,13 +106,13 @@
       label: "宸ヨ祫瀹氶",
       prop: "salaryQuota",
     },
-    {
-      label: "鏄惁璐ㄦ",
-      prop: "isQuality",
-      formatData: (params) => {
-        return params ? "鏄�" : "鍚�";
-      },
-    },
+    // {
+    //   label: "鏄惁鎶ュ伐",
+    //   prop: "isReportWork",
+    //   formatData: (params) => {
+    //     return params ? "鏄�" : "鍚�";
+    //   },
+    // },
     {
       label: "澶囨敞",
       prop: "remark",
@@ -179,7 +179,7 @@
         tableLoading.value = false;
         tableData.value = res.data.records.map(item => ({
           ...item,
-          typeText: item.type !== undefined ? (item.type === 0 ? "璁℃椂" : "璁′欢") : "",
+          typeText: item.type !== undefined && item.type !== null ? (item.type === 0 ? "璁℃椂" : "璁′欢") : "",
         }));
         page.total = res.data.total;
       })

--
Gitblit v1.9.3