From 0ea26a3272f39d5f0cf343f655f159ca31eb3df1 Mon Sep 17 00:00:00 2001 From: fengchenchen Date: Tue, 15 Aug 2023 12:03:57 +0800 Subject: [PATCH] =?UTF-8?q?[fix-bug]-=E7=BA=BF=E4=B8=8A=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E4=BA=BA=E5=91=98=E4=BF=A1=E6=81=AFbug=E7=9A=84=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/modules/user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/modules/user.js b/src/store/modules/user.js index 1091d75..df2cdaf 100644 --- a/src/store/modules/user.js +++ b/src/store/modules/user.js @@ -261,7 +261,7 @@ const user = { break // 是标协会员但不是企业管理员,不显示标协会员下的会员管理、证书管理、缴费信息、理事会四个菜单 case '2': - currentRouterData.forEach(item => { + allMenuData.forEach(item => { if (item.children && item.children.length > 0) { let tt = item tt.children = item.children.filter(aa => (aa.id.indexOf('standardsMemberManagement') === -1 && aa.id.indexOf('standardsCertificateManagement') === -1 && aa.id.indexOf('standardsPaymentInfo') === -1 && aa.id.indexOf('standardsCouncil')))