-
Notifications
You must be signed in to change notification settings - Fork 72
/
app.json
38 lines (38 loc) · 1.16 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
{
"pages": [
"pages/index/index",
"pages/discovery/discovery",
"pages/search/search",
"pages/list/list",
"pages/content/content",
"pages/result/result"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#27ae60",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#999",
"selectedColor": "#2196f3",
"backgroundColor": "#fff",
"borderStyle": "white",
"list": [{
"pagePath": "pages/index/index",
"iconPath": "./res/img/tabbar/menu.png",
"selectedIconPath": "./res/img/tabbar/menu_selected.png"
}, {
"pagePath": "pages/discovery/discovery",
"iconPath": "./res/img/tabbar/discovery.png",
"selectedIconPath": "./res/img/tabbar/discovery_selected.png"
}, {
"pagePath": "pages/search/search",
"iconPath": "./res/img/tabbar/search.png",
"selectedIconPath": "./res/img/tabbar/search_selected.png"
}]
},
"networkTimeout": {
"request": 10000,
"downloadFile": 10000
}
}