From bc53f0810871914083d2ffbc3bb6f83e39a927bf Mon Sep 17 00:00:00 2001 From: kesonlin Date: Thu, 18 Jan 2024 17:14:57 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E8=A7=92=E8=89=B2?= =?UTF-8?q?=E5=8F=98=E5=8C=96=E5=90=8E=E9=A1=B5=E9=9D=A2=E6=9D=83=E9=99=90?= =?UTF-8?q?=E6=B2=A1=E6=9C=89=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-plugin-access/src/runtime/core.tpl | 2 ++ .../src/runtime/views/MultiTabProvider.vue | 12 +++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/packages/fes-plugin-access/src/runtime/core.tpl b/packages/fes-plugin-access/src/runtime/core.tpl index 6ed11d9d..eecbc890 100644 --- a/packages/fes-plugin-access/src/runtime/core.tpl +++ b/packages/fes-plugin-access/src/runtime/core.tpl @@ -89,6 +89,8 @@ const setRole = async (roleId) => { throw new Error("[plugin-access]: argument to the setRole() must be string or promise"); } state.currentRoleId = roleId; + const roleAccessIds = state.roles[roleId] || []; + setAccess(roleAccessIds); }; const match = (path, accessIds) => { diff --git a/packages/fes-plugin-layout/src/runtime/views/MultiTabProvider.vue b/packages/fes-plugin-layout/src/runtime/views/MultiTabProvider.vue index 96b9e683..35b66f94 100644 --- a/packages/fes-plugin-layout/src/runtime/views/MultiTabProvider.vue +++ b/packages/fes-plugin-layout/src/runtime/views/MultiTabProvider.vue @@ -27,10 +27,11 @@