-
Notifications
You must be signed in to change notification settings - Fork 15
/
app.json
59 lines (58 loc) · 1.69 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
{
"pages": [
"pages/index",
"pages/poem/index",
"pages/homeList/index",
"pages/poem/detail/index",
"pages/me/index",
"pages/search/index",
"pages/sentence/index",
"pages/poet/index",
"pages/poet/detail/index",
"pages/me/poem/index",
"pages/me/author/index",
"pages/me/about/index",
"pages/poem/audio/index",
"pages/sentence/detail/index",
"pages/me/sentence/index",
"pages/sentence/list/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#337ab7",
"navigationBarTitleText": "古诗文小助手",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": true,
"onReachBottomDistance": 40
},
"tabBar": {
"selectedColor": "#337ab7",
"position": "bottom",
"list": [
{
"pagePath": "pages/index",
"text": "首页",
"iconPath": "images/icon/home.png",
"selectedIconPath": "images/icon/home_active.png"
},
{
"pagePath": "pages/search/index",
"text": "搜索",
"iconPath": "images/icon/find.png",
"selectedIconPath": "images/icon/find_active.png"
},
{
"pagePath": "pages/me/index",
"text": "我",
"iconPath": "images/icon/my.png",
"selectedIconPath": "images/icon/my_active.png"
}
]
},
"plugins": {
},
"requiredBackgroundModes": [
"audio"
],
"sitemapLocation": "sitemap.json"
}