-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
46 lines (46 loc) · 1.12 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
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/project/project",
"pages/profile/profile",
"pages/alarm/alarm",
"pages/common/blockSection",
"pages/env/env",
"pages/idc/idc",
"pages/equipment/equipment-add",
"pages/equipment/server"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#3366cc",
"navigationBarTitleText": "运维助手",
"navigationBarTextStyle": "#ffffff"
},
"tabBar": {
"color": "#BEBEBE",
"selectedColor": "#3366cc",
"backgroundColor": "#f2f2f2",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "img/home.png",
"selectedIconPath": "img/home-selected.png"
},
{
"pagePath": "pages/alarm/alarm",
"text": "告警",
"iconPath": "img/alert.png",
"selectedIconPath": "img/alert-selected.png"
},
{
"pagePath": "pages/profile/profile",
"text": "我",
"iconPath": "img/me.png",
"selectedIconPath": "img/me-selected.png"
}
]
}
}