-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
45 lines (45 loc) · 1.09 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
{
"pages":[
"pages/index/index",
"pages/detail/detail",
"pages/search/search",
"pages/mine/mine"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "音乐带来好心情",
"navigationBarTextStyle":"black",
"enablePullDownRefresh": false
},
"tabBar": {
"position": "bottom",
"selectedColor": "#d81e06",
"borderStyle": "white",
"backgroundColor": "#ccc",
"list": [{
"pagePath": "pages/index/index",
"text": "music",
"iconPath": "img/heart.png",
"selectedIconPath": "img/heart_red.png"
},
{
"pagePath": "pages/detail/detail",
"text": "detail",
"iconPath": "img/star.png",
"selectedIconPath": "img/star_red.png"
},
{
"pagePath": "pages/search/search",
"text": "search",
"iconPath": "img/search.png",
"selectedIconPath": "img/search_red.png"
},
{
"pagePath": "pages/mine/mine",
"text": "mine",
"iconPath": "img/mine.png",
"selectedIconPath": "img/mine_red.png"
}]
}
}