From 5506c70b61e3f12825e9970d1aa52493a3f4db03 Mon Sep 17 00:00:00 2001 From: ulleo Date: Wed, 7 Aug 2024 18:07:25 +0800 Subject: [PATCH] =?UTF-8?q?fix(X-Pack):=20=E4=BF=AE=E5=A4=8D=E4=BB=8E?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=A1=AB=E6=8A=A5=E9=A1=B5=E9=9D=A2=E5=88=87?= =?UTF-8?q?=E6=8D=A2=E5=9B=9E=E5=B7=A5=E4=BD=9C=E5=8F=B0=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/views/workbranch/index.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/core-frontend/src/views/workbranch/index.vue b/core/core-frontend/src/views/workbranch/index.vue index d5c0958a0b..b43bab8f81 100644 --- a/core/core-frontend/src/views/workbranch/index.vue +++ b/core/core-frontend/src/views/workbranch/index.vue @@ -154,8 +154,10 @@ const fillCardInfo = () => { if (key !== '3') { busiCountCardList.value.push(busiDataMap.value[key]) } - quickCreationList.value[key]['menuAuth'] = busiDataMap.value[key]['menuAuth'] - quickCreationList.value[key]['anyManage'] = busiDataMap.value[key]['anyManage'] + if (quickCreationList.value[key]) { + quickCreationList.value[key]['menuAuth'] = busiDataMap.value[key]['menuAuth'] + quickCreationList.value[key]['anyManage'] = busiDataMap.value[key]['anyManage'] + } } } const quickCreate = (flag: number, hasAuth: boolean) => {