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
| {
| "app": {
| "name": "监控平台",
| "description": "七星博士工业级监控平台"
| },
| "user": {
| "name": "管理员",
| "avatar": "./assets/img/zorro.svg",
| "email": "23420800@qq.com"
| },
| "menu": [{
| "text": "导航菜单",
| "translate": "main_navigation",
| "group": true,
| "children": [{
| "text": "首页",
| "translate": "home",
| "link": "/dashboard",
| "icon": "icon-cup"
| }, {
| "text": "用户管理",
| "translate": "user_management",
| "link": "/",
| "icon": "icon-user",
| "children": [{
| "text": "安装用户",
| "link": "/users/installer",
| "translate": "user_management_install"
| }, {
| "text": "报警用户",
| "link": "/users/receiver",
| "translate": "user_management_receive"
| }]
| }, {
| "text": "设备管理",
| "translate": "device_management",
| "link": "/",
| "icon": "icon-grid",
| "children": [{
| "text": "基本信息",
| "link": "/devices/basic",
| "translate": "device_management_info"
| }, {
| "text": "型号配置",
| "link": "/devices/version",
| "translate": "device_management_version"
| }, {
| "text": "监测区管理",
| "link": "/devices/monitor-point",
| "translate": "device_management_point"
| }]
| }, {
| "text": "传感器管理",
| "translate": "sensor_management",
| "link": "/",
| "icon": "icon-note",
| "children": [{
| "text": "基本信息",
| "link": "/sensors/basic",
| "translate": "device_management_info"
| }]
| }, {
| "text": "系统管理",
| "translate": "system_management",
| "link": "/",
| "icon": "icon-note",
| "children": [
| {
| "text": "账户管理",
| "link": "/systems/account",
| "translate": "system_management_account"
| },
| {
| "text": "组织管理",
| "link": "/systems/organization"
| }
| ]
| }]
| }]
| }
|
|