-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
64 lines (64 loc) · 1.72 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
{
"pages": [
"pages/index/index",
"pages/video/video",
"pages/my/my",
"pages/friend/friend",
"pages/account/account",
"pages/recommendDaily/recommendDaily",
"pages/songList/songList",
"pages/rankList/rankList",
"pages/player/player",
"pages/songListDetail/songListDetail"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "网易云音乐",
"navigationBarTextStyle": "black"
},
"sitemapLocation": "sitemap.json",
"tabBar": {
"custom": false,
"color": "#8D8D8D",
"selectedColor": "#DC4238",
"backgroundColor": "#ffffff",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/index/index",
"text": "发现",
"iconPath": "images/tabbar/discovery.png",
"selectedIconPath": "images/tabbar/discovery_prs.png"
},
{
"pagePath": "pages/video/video",
"text": "视频",
"iconPath": "images/tabbar/video_new.png",
"selectedIconPath": "images/tabbar/video_new_prs.png"
},
{
"pagePath": "pages/my/my",
"text": "我的",
"iconPath": "images/tabbar/music_new.png",
"selectedIconPath": "images/tabbar/music_new_prs.png"
},
{
"pagePath": "pages/friend/friend",
"text": "朋友",
"iconPath": "images/tabbar/friend.png",
"selectedIconPath": "images/tabbar/friend_prs.png"
},
{
"pagePath": "pages/account/account",
"text": "账号",
"iconPath": "images/tabbar/account.png",
"selectedIconPath": "images/tabbar/account_prs.png"
}
]
},
"requiredBackgroundModes": [
"audio",
"location"
]
}