-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
43 lines (43 loc) · 1.18 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
{
"pages": [
"pages/index/index",
"pages/video/video",
"pages/personal/personal",
"pages/recommendSong/recommendSong",
"pages/songDetail/songDetail",
"pages/login/login",
"pages/search/search"
],
"style": "v2",
"sitemapLocation": "sitemap.json",
"window": {
"navigationBarBackgroundColor": "#66ccff",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "喵呜音乐"
},
"tabBar": {
"color": "#707070",
"selectedColor": "#1296db",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"text": "主页",
"iconPath": "/static/images/tabs/tab-home.png",
"selectedIconPath": "/static/images/tabs/tab-home-click.png"
},
{
"pagePath": "pages/video/video",
"text": "视频",
"iconPath": "/static/images/tabs/tab-video.png",
"selectedIconPath": "/static/images/tabs/tab-video-click.png"
},
{
"pagePath": "pages/personal/personal",
"text": "个人中心",
"iconPath": "/static/images/tabs/tab-personal.png",
"selectedIconPath": "/static/images/tabs/tab-personal-click.png"
}
]
}
}