-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp.json
66 lines (66 loc) · 1.84 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
63
64
65
66
{
"pages": [
"pages/index/index",
"pages/tree/tree",
"pages/treeDetail/treeDetail",
"pages/login/login",
"pages/register/register",
"pages/about/about",
"pages/my/my",
"pages/search/search",
"pages/collect/collect",
"pages/project/project",
"pages/navi/navi",
"pages/web/web",
"pages/logs/logs"
],
"window": {
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#4CAF50",
"navigationBarTitleText": "玩安卓",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#999999",
"selectedColor": "#4CAF50",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/index_normal.png",
"selectedIconPath": "images/index_selected.png",
"text": "首页"
},
{
"pagePath": "pages/tree/tree",
"iconPath": "images/tree_normal.png",
"selectedIconPath": "images/tree_selected.png",
"text": "体系"
},
{
"pagePath": "pages/navi/navi",
"iconPath": "images/navi_normal.png",
"selectedIconPath": "images/navi_selected.png",
"text": "导航"
},
{
"pagePath": "pages/project/project",
"iconPath": "images/proj_normal.png",
"selectedIconPath": "images/proj_selected.png",
"text": "项目"
},
{
"pagePath": "pages/my/my",
"iconPath": "images/my_normal.png",
"selectedIconPath": "images/my_selected.png",
"text": "我的"
}
]
},
"networkTimeout": {
"request": 20000,
"connectSocket": 10000,
"uploadFile": 10000,
"downloadFile": 10000
},
"sitemapLocation": "sitemap.json"
}