-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
53 lines (53 loc) · 1.39 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
{
"pages": [
"pages/index/index",
"pages/log/log",
"pages/category/category",
"pages/collection/collection",
"pages/search/search",
"pages/mine/about",
"pages/webview/webView",
"pages/history/history",
"pages/about/about"
],
"tabBar": {
"color": "#8a8a8a",
"selectedColor": "#1296db",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/nav/new_off.png",
"selectedIconPath": "images/nav/new_on.png",
"text": "最新"
},
{
"pagePath": "pages/category/category",
"iconPath": "images/nav/type_off.png",
"selectedIconPath": "images/nav/type_on.png",
"text": "分类"
},
{
"pagePath": "pages/collection/collection",
"iconPath": "images/nav/collection_off.png",
"selectedIconPath": "images/nav/collection_on.png",
"text": "收藏"
},
{
"pagePath": "pages/mine/about",
"iconPath": "images/nav/about_off.png",
"selectedIconPath": "images/nav/about_on.png",
"text": "关于"
}
]
},
"usingComponents": {},
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#1296db",
"navigationStyle": "custom",
"navigationBarTitleText": "Ganker",
"navigationBarTextStyle": "white"
}
}