From baa4c7e861b674cdf0ec86a3f055da9a8778e31e Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期四, 26 三月 2026 17:44:53 +0800
Subject: [PATCH] 电压分选工序的报工详情,修复不良数量和作业员显示

---
 src/components/PIMTable/PIMTable.vue |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/src/components/PIMTable/PIMTable.vue b/src/components/PIMTable/PIMTable.vue
index a418280..159c533 100644
--- a/src/components/PIMTable/PIMTable.vue
+++ b/src/components/PIMTable/PIMTable.vue
@@ -26,6 +26,7 @@
       type="selection"
       width="55"
       v-if="isSelection"
+      :selectable="rowSelectable"
     />
     <el-table-column align="center" label="搴忓彿" type="index" width="60" />
 
@@ -333,6 +334,11 @@
   },
 });
 
+// 閫夋嫨妗嗙鐢ㄦ帶鍒讹細琛屽璞′笂濡傛灉鏈� disabled === true锛屽垯涓嶅厑璁搁�変腑
+const rowSelectable = (row, index) => {
+  return !row.disabled;
+};
+
 // Data
 const uploadRefs = ref([]);
 const currentFiles = ref({});

--
Gitblit v1.9.3