-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
53 lines (53 loc) · 1.4 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/category/category",
"pages/rank/rank",
"pages/mybooks/mybooks",
"pages/bookinfo/bookinfo",
"pages/searchRes/searchRes",
"pages/authorbooks/authorbooks",
"pages/read/read",
"pages/rankdetail/rankdetail",
"pages/catedetail/catedetail"
],
"window": {
"navigationBarBackgroundColor": "#008B8B",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "阅鼑",
"backgroundColor": "#eeeeee",
"backgroundTextStyle": "light",
"enablePullDownRefresh": false
},
"tabBar": {
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "imgs/index.png",
"selectedIconPath": "imgs/index_selected.png"
},
{
"pagePath": "pages/rank/rank",
"text": "排行榜",
"iconPath": "imgs/rank.png",
"selectedIconPath": "imgs/rank_selected.png"
},
{
"pagePath": "pages/category/category",
"text": "分类",
"iconPath": "imgs/category.png",
"selectedIconPath": "imgs/category_selected.png"
},
{
"pagePath": "pages/mybooks/mybooks",
"text": "我的书架",
"iconPath": "imgs/mybooks.png",
"selectedIconPath": "imgs/mybooks_selected.png"
}
],
"color": "#707070",
"selectedColor": "#008B8B"
},
"sitemapLocation": "sitemap.json"
}