From 7bc6b0c7805db48bef4a0ee5477a1681e396347d Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期三, 17 一月 2024 10:39:07 +0800 Subject: [PATCH] 新增页面 --- src/layout/components/Sidebar/menu.js | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/src/layout/components/Sidebar/menu.js b/src/layout/components/Sidebar/menu.js index 740cd71..56f02e5 100644 --- a/src/layout/components/Sidebar/menu.js +++ b/src/layout/components/Sidebar/menu.js @@ -2,6 +2,11 @@ const menu = { adminMenu: [ { + path: '/project', + name: 'Project', + meta: { title: '项目管理',icon: 'form',affix: true } + }, + { path: '/institution', name: 'Institution', meta: { title: '机构公示',icon: 'form',affix: true } @@ -84,6 +89,26 @@ ] }, + ], + agencyMenu: [ + { + path: '/project', + name: 'Project', + meta: { title: '项目管理',icon: 'form',affix: true } + }, + { + path: '/userManage', + redirect: '/userManage/supervise', + meta: { title: '用户管理',icon: 'form'}, + children: [ + { + path: 'expertUsers', + name: 'expertUsers', + meta: { title: '专家用户管理',icon: 'form'} + } , + ] + }, ] + } export default menu; -- Gitblit v1.9.2