-
Notifications
You must be signed in to change notification settings - Fork 62
/
app.json
53 lines (51 loc) · 1.41 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/my-music/my-music",
"pages/for-you/for-you",
"pages/explore/explore",
"pages/broadcast/broadcast",
"pages/search/search",
"pages/index/index",
"pages/main/main",
"pages/logs/logs"
],
"window": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "AppleMusic",
"navigationBarBackgroundColor": "#ffffff",
"backgroundColor": "#ffffff"
},
"tabBar": {
"color": "#929292",
"selectedColor": "#ff2d55",
"borderStyle": "white",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/my-music/my-music",
"iconPath": "image/tabbar/1.png",
"selectedIconPath": "image/tabbar/1-hl.png",
"text": "我的音乐"
}, {
"pagePath": "pages/for-you/for-you",
"iconPath": "image/tabbar/2.png",
"selectedIconPath": "image/tabbar/2-hl.png",
"text": "为你推荐"
},{
"pagePath": "pages/explore/explore",
"iconPath": "image/tabbar/3.png",
"selectedIconPath": "image/tabbar/3-hl.png",
"text": "浏览"
},{
"pagePath": "pages/broadcast/broadcast",
"iconPath": "image/tabbar/4.png",
"selectedIconPath": "image/tabbar/4-hl.png",
"text": "广播"
},{
"pagePath": "pages/search/search",
"iconPath": "image/tabbar/5.png",
"selectedIconPath": "image/tabbar/5-hl.png",
"text": "搜索"
}]
},
"debug": true
}