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
| {
| "app": {
| "name": "Alain",
| "description": "Ng-zorro admin panel front-end framework"
| },
| "user": {
| "name": "Admin",
| "avatar": "./assets/img/zorro.svg",
| "email": "cipchk@qq.com"
| },
| "menu": [{
| "text": "主导航",
| "translate": "main_navigation",
| "group": true,
| "children": [{
| "text": "仪表盘",
| "link": "/dashboard",
| "icon": "icon-speedometer",
| "children": [{
| "text": "仪表盘V1",
| "link": "/dashboard/v1",
| "translate": "dashboard_v1"
| }, {
| "text": "分析页",
| "link": "/dashboard/analysis"
| }, {
| "text": "Monitor",
| "link": "/dashboard/monitor",
| "translate": "dashboard_monitor"
| }, {
| "text": "Workplace",
| "link": "/dashboard/workplace",
| "translate": "dashboard_workplace"
| }]
| }, {
| "text": "快捷菜单",
| "translate": "shortcut",
| "icon": "icon-rocket",
| "shortcut_root": true,
| "children": []
| }]
| }, {
| "text": "系统管理",
| "group": true,
| "children": [{
| "text": "用户管理",
| "link": "/users",
| "icon": "icon-user",
| "children": [{
| "text": "安装用户",
| "link": "/users/installer"
| }, {
| "text": "报警用户",
| "link": "/users/alarm-user"
| }]
| }, {
| "text": "设备管理",
| "link": "/devices",
| "icon": "icon-grid",
| "children": [{
| "text": "基本信息",
| "link": "/devices/basic"
| }, {
| "text": "型号配置",
| "link": "/devices/version"
| }, {
| "text": "监测区管理",
| "link": "/devices/monitor-point"
| }]
| }, {
| "text": "传感器管理",
| "link": "/sensors",
| "icon": "icon-note",
| "children": [{
| "text": "基本信息",
| "link": "/sensors/basic"
| }]
| }, {
| "text": "系统管理",
| "link": "/systems",
| "icon": "icon-note",
| "children": [
| {
| "text": "账户管理",
| "link": "/systems/account"
| },
| {
| "text": "组织管理",
| "link": "/systems/organization"
| }
| ]
| }
|
| ]
|
|
| }
|
|
| ]
| }
|
|