-
Notifications
You must be signed in to change notification settings - Fork 3
/
pages.json
103 lines (102 loc) · 2.87 KB
/
pages.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"pages" : [
//pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path" : "pages/index/index",
"style" : {
"navigationBarTitleText" : "音乐",
"enablePullDownRefresh": true
}
},
{
"path" : "pages/mvDetail/mvDetail",
"style" : {
"navigationBarTitleText" : "MV详情"
}
},
{
"path" : "pages/getPlaylistDetail/getPlaylistDetail",
"style" : {
"navigationBarTitleText" : "歌单列表"
}
},
{
"path" : "pages/personalizedList/personalizedList",
"style" : {
"navigationBarTitleText" : "歌单"
}
},
{
"path" : "pages/mvList/mvList",
"style" : {
"navigationBarTitleText" : "mv列表"
}
},
{
"path" : "pages/djList/djList",
"style" : {
"navigationBarTitleText" : "电台列表"
}
},
{
"path" : "pages/play/play",
"style" : {}
},
{
"path" : "pages/ranking/ranking",
"style" : {
"navigationBarTitleText" : "排行榜"
}
},
{
"path" : "pages/mv/mv",
"style" : {
"navigationBarTitleText" : "MV",
"enablePullDownRefresh": true
}
},
{
"path" : "pages/rankingList/rankingList",
"style" : {}
},
{
"path" : "pages/singerInfo/singerInfo",
"style" : {}
}
],
"globalStyle" : {
"navigationBarTextStyle" : "white",
"navigationBarTitleText" : "音乐",
"navigationBarBackgroundColor" : "#e91e63",
"backgroundColor" : "#e91e63"
},
"tabBar" : {
//底部选项卡
"color" : "#333333",
"selectedColor" : "#e91e63",
"borderStyle" : "black",
"list" : [
//tab选项
{
"text" : "首页",
"pagePath" : "pages/index/index",
"iconPath" : "static/images/index-d.png",
"selectedIconPath" : "static/images/index-a.png"
}
,{
"text" : "牌行榜",
"pagePath" : "pages/ranking/ranking",
"iconPath" : "static/images/ranking-d.png",
"selectedIconPath" : "static/images/ranking-a.png"
}
// #ifndef MP-WEIXIN
,{
"text" : "MV",
"pagePath" : "pages/mv/mv",
"iconPath" : "static/images/mv-d.png",
"selectedIconPath" : "static/images/mv-a.png"
}
// #endif
]
}
}