From 671364ab0aa08580f51159fe5843b853b13f1555 Mon Sep 17 00:00:00 2001 From: "xinxin.wu" Date: Wed, 24 Jul 2024 16:20:15 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=AE=A1=E5=88=92):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=B5=8B=E8=AF=95=E8=AE=A1=E5=88=92=E9=80=89?= =?UTF-8?q?=E6=8B=A9table=E5=85=B3=E8=81=94=E7=94=A8=E4=BE=8B=E5=8F=96?= =?UTF-8?q?=E6=B6=88=E6=95=B0=E9=87=8F=E4=B8=8D=E6=AD=A3=E7=A1=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/business/ms-associate-case/useModuleSelection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/business/ms-associate-case/useModuleSelection.ts b/frontend/src/components/business/ms-associate-case/useModuleSelection.ts index e88fd06d89..01953d4bd5 100644 --- a/frontend/src/components/business/ms-associate-case/useModuleSelection.ts +++ b/frontend/src/components/business/ms-associate-case/useModuleSelection.ts @@ -66,7 +66,7 @@ export default function useModuleSelections( } // 有排除的则从全部的里边排除掉排除的进行回显选择项 // 确保单独更新行选中或者取消能精确判断是否已经选中或排除 - if (selectAllProps && selectAllProps.excludeIds.size) { + if (selectAllProps && selectAllProps.selectAll && selectAllProps.excludeIds.size) { (moduleSelectedMap.value[item.moduleId] || []).forEach((id) => { if (!selectAllProps.excludeIds.has(id)) { allSelectIds.add(id);