-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
50 lines (50 loc) · 1.24 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
{
"pages":[
"pages/login/login",
"pages/home/home",
"pages/personal/personal",
"pages/singer/singer",
"pages/song/song",
"pages/index/index",
"pages/logs/logs",
"pages/more-music/more-music",
"pages/music-detail/music-detail"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#e22c25",
"navigationBarTitleText": "TMusic",
"navigationBarTextStyle":"white"
},
"tabBar":{
"color": "#c0c0c0",
"selectedColor": "#f25752",
"list":[
{
"pagePath":"pages/singer/singer",
"text":"音乐人",
"iconPath":"/images/Tab/Singer.png",
"selectedIconPath": "/images/Tab/SingerSelected.png"
},
{
"pagePath": "pages/home/home",
"text": "每日推荐",
"iconPath": "/images/Tab/Recommend.png",
"selectedIconPath": "/images/Tab/RecommendSelected.png"
},
{
"pagePath": "pages/personal/personal",
"text": "我的音乐",
"iconPath": "/images/Tab/Song.png",
"selectedIconPath": "/images/Tab/SongSelected.png"
}
],
"position":"bottom"
},
"networkTimeout":{
"request": 10000
},
"requiredBackgroundModes": [
"audio"
]
}