-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
47 lines (47 loc) · 1.17 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
{
"pages":[
"pages/index/index",
"pages/my/my",
"pages/play/play",
"pages/account/account",
"pages/logs/logs"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#827f2e",
"navigationBarTitleText": "蜗牛云音乐",
"navigationBarTextStyle":"white",
"backgroundColor": "#FBFCFD"
},
"tabBar": {
"backgroundColor": "#524b38",
"color": "#a7a7a7",
"selectedColor": "#ffffff",
"list": [
{
"iconPath": "./images/find.png",
"selectedIconPath": "./images/find1.png",
"pagePath": "pages/index/index",
"text": "发现音乐"
},
{
"iconPath": "./images/my.png",
"selectedIconPath": "./images/my1.png",
"pagePath": "pages/my/my",
"text": "我的音乐"
},
{
"iconPath": "./images/now.png",
"selectedIconPath": "./images/now1.png",
"pagePath": "pages/play/play",
"text": "正在播放"
},
{
"iconPath": "./images/account.png",
"selectedIconPath": "./images/account1.png",
"pagePath": "pages/account/account",
"text": "账号"
}
]
}
}