zhouwenxuan
2024-01-16 52f0aa42410a2102a8fa1badfc8e467cae7d6a7c
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 }
@@ -40,17 +45,17 @@
        },
        {
            path: '/expertManage',
            redirect: '/userManage/supervise',
            redirect: '/expertManage/experts',
            meta: { title: '厅专家库管理',icon: 'form'},
            children: [
                {
                    path: 'expert',
                    name: 'expert',
                    path: 'experts',
                    name: 'experts',
                    meta: { title: '厅专家库',icon: 'form'}
                },
                {
                    path: 'record',
                    name: 'record',
                    path: 'applyRecords',
                    name: 'applyRecords',
                    meta: { title: '专家申请记录',icon: 'form'}
                }
            ]
@@ -66,6 +71,11 @@
                    meta: { title: '评价类型管理',icon: 'form'}
                },
                {
                    path: 'expertsType',
                    name: 'expertsType',
                    meta: { title: '专家类型管理',icon: 'form'}
                },
                {
                    path: 'business',
                    name: 'business',
                    meta: { title: '业务范围',icon: 'form'}
@@ -79,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;