import Layout from '@/layout' const menu = { adminMenu: [ { path: '/permit', name: 'Permit', meta: { title: '许可证信息',icon: 'form',affix: true } }, { path: '/people', name: 'People', meta: { title: '人员信息',icon: 'people',affix: true } }, { path: '/warehouse', name: 'Warehouse', meta: { title: '仓库信息',icon: 'data',affix: true } }, { path: '/peopleCar', name: 'PeopleCar', meta: { title: '车辆人员信息',icon: 'peoples',affix: true } }, { path: '/humiture', name: 'Humiture', meta: { title: '温湿度数据',icon: 'thermometer',affix: true } }, { path: '/alarm', name: 'Alarm', meta: { title: '报警信息',icon: 'alarm',affix: true } }, { path: '/warning', name: 'Warning', meta: { title: '预警信息反馈',icon: 'file',affix: true } }, ], agencyMenu: [ // { // path: '/project', // name: 'Project', // meta: { title: '项目管理',icon: 'form',affix: true } // }, { path: '/projectManage', redirect: '/projectManage/project', meta: { title: '项目管理',icon: 'clipboard'}, children: [ { path: 'project', name: 'project', meta: { title: '安全评价',icon: 'monitor'} }, { path: 'test', name: 'test', meta: { title: '检验检测',icon: 'list'} }, ] }, { path: '/projectSupplement', name: 'projectSupplement', meta: { title: '项目补录',icon: 'form',affix: true } }, { path: '/userManage', redirect: '/userManage/supervise', meta: { title: '用户管理',icon: 'peoples'}, children: [ { path: 'expertUsers', name: 'expertUsers', meta: { title: '专家用户管理',icon: 'logininfor'} } , ] }, ], noMenu: [ { path: '/noMenu', name: 'noMenu', meta: { title: '提示',icon: 'form',affix: true } }, ] } export default menu;