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
|
| export default {
| resName:'dxy',
| roles:JSON.parse(localStorage.getItem('type')) || "",
| resultAsyncRoutes:JSON.parse(localStorage.getItem('userRouters')) || [] ,// 根据权限筛选路由
| items: [
| {
| id:1,
| icon: 'el-icon-folder-opened',
| indexUrl: '1',
| name: '系统管理',
| children:[
| {
| id:1,
| icon: 'el-icon-user-solid',
| name: '人员管理',
| parentId: 1,
| indexUrl: 'user'
| }
| ]
| },
| {
| id:2,
| icon: 'el-icon-folder-opened',
| indexUrl: '2',
| name: '智慧泊车管理',
| children:[
| {
| icon: 'el-icon-document',
| name: '停车场管理',
| parentId: 2,
| indexUrl: "park"
| },
| {
| icon: 'el-icon-document',
| name: '收费规则管理',
| parentId: 2,
| indexUrl: "costRule"
| },
| {
| icon: 'el-icon-document',
| name: '车辆入场管理',
| parentId: 2,
| indexUrl: "enterPark"
| },
| {
| icon: 'el-icon-document',
| name: '车辆出场管理',
| parentId: 2,
| indexUrl: "outPark"
| },
| {
| icon: 'el-icon-document',
| name: '白名单管理',
| parentId: 2,
| indexUrl: "whiteList"
| },
| {
| icon: 'el-icon-document',
| name: '泊车发票管理',
| parentId: 2,
| indexUrl: "parkticket"
| },
| {
| icon: 'el-icon-document',
| name: '订单统计',
| parentId: 2,
| indexUrl: "orderRecord"
| },
| ]
| },
| {
| id:3,
| icon: 'el-icon-folder-opened',
| indexUrl: '3',
| name: '智慧罚没管理',
| children:[
| {
| icon: 'el-icon-document',
| name: '违章类型管理',
| parentId: 3,
| indexUrl: "violationType"
| },
| {
| icon: 'el-icon-document',
| name: '街道管理',
| parentId: 3,
| indexUrl: "street"
| },
| {
| icon: 'el-icon-document',
| name: '罚单管理',
| parentId: 3,
| indexUrl: "ticket"
| },
| {
| icon: 'el-icon-document',
| name: '罚没发票管理',
| parentId: 3,
| indexUrl: "zfticket"
| },
| ]
| },
| ],
| }
|
|