1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
| 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;
|
|