瀏覽代碼

菜单权限

CzRger 1 年之前
父節點
當前提交
21a764924a
共有 3 個文件被更改,包括 29 次插入9 次删除
  1. 8 0
      src/router/index.ts
  2. 18 9
      src/router/modules/system.ts
  3. 3 0
      src/store/modules/app.ts

+ 8 - 0
src/router/index.ts

@@ -147,7 +147,15 @@ const setRouters = () => {
             return item.path
         }
     }
+    const roleChildren: any = []
+    systemRouter.children.forEach(v => {
+        if (v.meta.roles.some(v => store.getters['app/userRoleStr'].includes(v))) {
+            roleChildren.push(v)
+        }
+    })
+    systemRouter.children = roleChildren
     const arr = [stagingRouter, systemRouter]
+    console.log(systemRouter)
     const menuRouters = deep(arr, [])
     //  初始化一级菜单默认重定向地址
     menuRouters.forEach(v => {

+ 18 - 9
src/router/modules/system.ts

@@ -52,63 +52,72 @@ export const systemRouter: any = {
       menuCode: '6ef6834c-ffa6-4d38-b5e8-9acd6ee37aad',
       path: 'seat',
       meta: {
-        title: '席位管理'
+        title: '席位管理',
+        roles: ['ZBGL'],
       },
     },
     {
       menuCode: '7d1096ea-871a-4ab6-9909-29cce6c399fa',
       path: 'sign',
       meta: {
-        title: '签卡管理'
+        title: '签卡管理',
+        roles: ['ZBY', 'ZBGL'],
       },
     },
     {
       menuCode: '271b733b-f08c-4628-bc98-eae5a40887da',
       path: 'daily',
       meta: {
-        title: '日志管理'
+        title: '日志管理',
+        roles: ['ZBY', 'ZBGL'],
       },
     },
     {
       menuCode: '258df2a8-c2db-4fc6-9f9e-3845b58b9dd3',
       path: 'weekly',
       meta: {
-        title: '周报管理'
+        title: '周报管理',
+        roles: ['ZBY', 'ZBGL'],
       },
     },
     {
       menuCode: 'fc9664b6-69f3-4dc8-bedb-a391fdc3a0db',
       path: 'notice',
       meta: {
-        title: '通知公告'
+        title: '通知公告',
+        roles: ['ZBY', 'ZBGL'],
       },
     },
     {
       menuCode: 'bef4db9b-4878-4913-95dc-5fe0cbfff8d2',
       path: 'config',
       meta: {
-        title: '公共配置'
+        title: '公共配置',
+        roles: ['ZBGL'],
       },
     },
     {
       menuCode: '375eaf76-049c-46a4-90c5-5d42ecc3f27c',
       path: 'dict',
       meta: {
-        title: '字典管理'
+        title: '字典管理',
+        roles: ['ZBGL'],
       },
     },
     {
       menuCode: '59848b4b-3ef3-4fa6-be81-6944a663d084',
       path: 'login-log',
       meta: {
-        title: '登录日志'
+        title: '登录日志',
+        roles: ['ZBGL'],
       },
     },
     {
       menuCode: 'a54c0986-4de8-46f4-88cc-94903f103bf9',
       path: 'operation',
       meta: {
-        title: '操作记录'
+        title: '操作记录',
+        roles: ['ZBGL'],
       },
     },
   ]

+ 3 - 0
src/store/modules/app.ts

@@ -39,6 +39,9 @@ const getters = {
 	isZBY: (state) => {
 		return state.userRoleList.some(v => v.permissionValue === 'ZBY')
 	},
+	userRoleStr: (state) => {
+		return state.userRoleList.map(v => v.permissionValue).join(',')
+	},
 	isWeeklyDay: (state) => {
 		return new Date(state.timestamp).getDay() === state.weeklySubmitDay
 	},