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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
| import Layout from '@/layout'
| const menu = {
| adminMenu: [
| {
| path: '/project',
| name: 'Project',
| meta: { title: '项目管理',icon: 'form',affix: true }
| },
| {
| path: '/projectSupplement',
| name: 'projectSupplement',
| meta: { title: '项目补录',icon: 'form',affix: true }
| },
| {
| path: '/institution',
| name: 'Institution',
| meta: { title: '机构公示',icon: 'chart',affix: true }
| },
| {
| path: '/notice',
| name: 'Notice',
| meta: { title: '公告发布',icon: 'email', affix: true }
| },
| {
| path: '/law',
| name: 'Law',
| meta: { title: '法律法规',icon: 'excel', affix: true }
| },
| {
| path: '/userManage',
| redirect: '/userManage/supervise',
| meta: { title: '用户管理',icon: 'peoples'},
| children: [
| {
| path: 'supervise',
| name: 'supervise',
| meta: { title: '监管用户管理',icon: 'monitor'}
| },
| {
| path: 'institutionUser',
| name: 'institutionUser',
| meta: { title: '机构用户管理',icon: 'list'}
| },
| {
| path: 'expertUsers',
| name: 'expertUsers',
| meta: { title: '专家用户管理',icon: 'logininfor'}
| }
| ]
| },
| {
| path: '/expertManage',
| redirect: '/expertManage/experts',
| meta: { title: '厅专家库管理',icon: 'post'},
| children: [
| {
| path: 'experts',
| name: 'experts',
| meta: { title: '厅专家库',icon: 'server'}
| },
| {
| path: 'applyRecords',
| name: 'applyRecords',
| meta: { title: '专家申请记录',icon: 'skill'}
| }
| ]
| },
| {
| path: '/postEvaluation',
| name: '/postEvaluation',
| meta: { title: '事后考评',icon: 'post'}
| },
| {
| path: '/evaluateRecord',
| name: '/evaluateRecord',
| meta: { title: '专家考评记录',icon: 'post'}
| },
| {
| path: '/system',
| redirect: '/system/dept',
| meta: { title: '系统设置',icon: 'dict'},
| children: [
| {
| path: 'dept',
| name: 'dept',
| meta: { title: '部门处室管理',icon: 'build'}
| },
| {
| path: 'expertsType',
| name: 'expertsType',
| meta: { title: '专业领域管理',icon: 'clipboard'}
| },
| {
| path: 'evaluate',
| name: 'evaluate',
| meta: { title: '考评项目管理',icon: 'build'}
| },
| {
| path: 'openApply',
| name: 'openApply',
| meta: { title: '专家申请设置',icon: 'cascader'}
| }
|
| ]
| },
|
| ],
| agencyMenu: [
| {
| path: '/project',
| name: 'Project',
| meta: { title: '项目管理',icon: 'form',affix: true }
| },
| {
| 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;
|
|