马宇豪
2024-01-17 7bc6b0c7805db48bef4a0ee5477a1681e396347d
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;