app.json
899 Bytes
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
{
"pages": [
"pages/monitor/monitor",
"pages/home/home",
"pages/detail/detail"
],
"tabBar": {
"color": "#323241",
"selectedColor": "#0057C4",
"backgroundColor": "#fff",
"list": [
{
"pagePath": "pages/monitor/monitor",
"text": "监控",
"iconPath": "./img/monitor.png",
"selectedIconPath": "./img/monitorSelected.png"
},
{
"pagePath": "pages/home/home",
"text": "我的",
"iconPath": "./img/home.png",
"selectedIconPath": "./img/homeSelected.png"
}
]
},
"window": {
"backgroundTextStyle": "light",
"navigationBarTextStyle": "black",
"navigationBarBackgroundColor": "#ffffff",
"navigationStyle": "custom",
"enablePullDownRefresh": true
},
"usingComponents": {
},
"componentFramework": "glass-easel",
"lazyCodeLoading": "requiredComponents"
}