-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
62 lines (61 loc) · 1.77 KB
/
app.json
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
{
"pages":[
"pages/login/login",
"pages/home/home",
"pages/alarm/alarm",
"pages/mine/mine",
"pages/device/device",
"pages/addtask/addtask",
"pages/task_details/task_details",
"pages/alert_details/alert_details",
"pages/task/task",
"pages/early_warning/early_warning",
"pages/real_time_data/real_time_data",
"pages/real_time_monitoring/real_time_monitoring",
"pages/details_equipment_group/details_equipment_group",
"pages/device_details/device_details",
"pages/alarm_rules/alarm_rules",
"pages/set_alarm_rules/set_alarm_rules",
"pages/check_alarm/check_alarm",
"pages/Appearance_level_contest/Appearance_level_contest",
"pages/ranking_page/ranking_page",
"pages/logs/logs"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#1A203B",
"navigationBarTitleText": "page_title",
"navigationBarTextStyle": "white"
},
"tabBar":{
"color": "#a9b7b7",
"selectedColor": "#0C64D0",
"backgroundColor":"#2E3450",
"list": [
{
"selectedIconPath": "/images/tabBar/home_sel.png",
"iconPath": "/images/tabBar/home.png",
"pagePath": "pages/home/home",
"text": "首页"
},
{
"selectedIconPath": "/images/tabBar/alarm_sel.png",
"iconPath": "/images/tabBar/alarm.png",
"pagePath": "pages/alarm/alarm",
"text": "告警"
},
{
"selectedIconPath": "/images/tabBar/device_sel.png",
"iconPath": "/images/tabBar/device.png",
"pagePath": "pages/device/device",
"text": "设备"
},
{
"selectedIconPath": "/images/tabBar/mine_sel.png",
"iconPath": "/images/tabBar/mine.png",
"pagePath": "pages/mine/mine",
"text": "我的"
}
]
}
}