-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
43 lines (43 loc) · 1.08 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
{
"pages": [
"pages/index/index",
"pages/player/player",
"pages/top-list/top-list",
"pages/singer/singer",
"pages/singer-detail/singer-detail",
"pages/search/search"
],
"requiredBackgroundModes": [
"audio"
],
"window": {
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
},
"tabBar": {
"selectedColor": "#31c27c",
"color": "#999",
"list": [
{
"pagePath": "pages/index/index",
"text": "推荐",
"iconPath": "/assets/images/index.png",
"selectedIconPath": "/assets/images/index_active.png"
},
{
"pagePath": "pages/player/player",
"text": "正在播放",
"iconPath": "/assets/images/player.png",
"selectedIconPath": "/assets/images/player_active.png"
},
{
"pagePath": "pages/singer/singer",
"text": "音乐馆",
"iconPath": "/assets/images/singer.png",
"selectedIconPath": "/assets/images/singer_active.png"
}
]
},
"sitemapLocation": "sitemap.json"
}