import Layout from '@/layout' const menu = { adminMenu: [ { path: '/institution', name: 'Institution', meta: { title: '机构公示',icon: 'form',affix: true } }, { path: '/notice', name: 'Notice', meta: { title: '公告发布',icon: 'form', affix: true } }, { path: '/law', name: 'Law', meta: { title: '法律法规',icon: 'form', affix: true } }, { path: '/userManage', redirect: '/userManage/supervise', meta: { title: '用户管理',icon: 'form'}, children: [ { path: 'supervise', name: 'supervise', meta: { title: '监管用户管理',icon: 'form'} }, { path: 'institutionUser', name: 'institutionUser', meta: { title: '机构用户管理',icon: 'form'} }, { path: 'expertUsers', name: 'expertUsers', meta: { title: '专家用户管理',icon: 'form'} } ] }, { path: '/expertManage', redirect: '/expertManage/experts', meta: { title: '厅专家库管理',icon: 'form'}, children: [ { path: 'experts', name: 'experts', meta: { title: '厅专家库',icon: 'form'} }, { path: 'applyRecords', name: 'applyRecords', meta: { title: '专家申请记录',icon: 'form'} } ] }, { path: '/baseSet', redirect: '/baseSet/evaluate', meta: { title: '基础设置',icon: 'form'}, children: [ { path: 'evaluate', name: 'evaluate', meta: { title: '评价类型管理',icon: 'form'} }, { path: 'expertsType', name: 'expertsType', meta: { title: '专家类型管理',icon: 'form'} }, { path: 'business', name: 'business', meta: { title: '业务范围',icon: 'form'} }, { path: 'area', name: 'area', meta: { title: '地区维护',icon: 'form'} } ] }, ], agencyMenu: [ { path: '/userManage', redirect: '/userManage/supervise', meta: { title: '用户管理',icon: 'form'}, children: [ { path: 'expertUsers', name: 'expertUsers', meta: { title: '专家用户管理',icon: 'form'} } , ] }, ] } export default menu;