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
| /**
| * 菜单列表
| * key, path需要保持唯一
| * permKey表示权限Key值
| */
| const menus = [
| {
| key: 'index',
| name: '首页',
| path: '/app',
| icon: 'home',
| permKey: 'menu.home',
| children: [{
| key: 'index_workbench',
| name: '工作台',
| path: '/index/workbench',
| permKey: '/index/workbench',
| children: []
| }, {
| key: 'index_system',
| name: '规章制度',
| path: '/index/system',
| permKey: '/index/system',
| children: []
| }],
| },
| // {
| // key: 'collect',
| // name: '信息采集',
| // path: '/collect',
| // icon: 'user',
| // permKey: 'menu.users',
| // children: [
| // {
| // key: 'collect_jurisdictionPersonMgt',
| // name: '辖区人口管理',
| // path: '/collect/jurisdictionPersonMgt',
| // permKey: 'collect_jurisdictionPersonMgt',
| // children: [],
| // },
| // {
| // key: 'collect_personhouseMgt',
| // name: '查人查房管理',
| // path: '/collect/personhouseMgt',
| // permKey: 'collect_personhouseMgt',
| // children: [],
| // }
| // ],
| // },
| ];
|
| export default menus;
|
|