From b175633a8a9599a09667d7d7c01a13d77c7733ee Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期三, 06 五月 2026 14:34:03 +0800
Subject: [PATCH] feat(customerService): 新增售后单表单组件及销售台账管理功能

---
 src/views/safeProduction/hazardousMaterialsControl/index.vue |   10 +---------
 1 files changed, 1 insertions(+), 9 deletions(-)

diff --git a/src/views/safeProduction/hazardousMaterialsControl/index.vue b/src/views/safeProduction/hazardousMaterialsControl/index.vue
index b2048fe..a53490c 100644
--- a/src/views/safeProduction/hazardousMaterialsControl/index.vue
+++ b/src/views/safeProduction/hazardousMaterialsControl/index.vue
@@ -653,15 +653,7 @@
 
   // 閫夋嫨鍙樺寲澶勭悊
   const handleSelectionChange = selection => {
-    // 涓昏〃鏍间篃鍙繚鐣欐渶鍚庝竴涓�変腑鐨勯」
-    if (selection.length > 1) {
-      const lastSelected = selection[selection.length - 1];
-      selectedIds.value = [lastSelected.id];
-    } else if (selection.length === 1) {
-      selectedIds.value = [selection[0].id];
-    } else {
-      selectedIds.value = [];
-    }
+    selectedIds.value = selection.map(item => item.id);
   };
 
   // 鎵撳紑琛ㄥ崟

--
Gitblit v1.9.3