-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
50 lines (49 loc) · 1.46 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/index/index",
"pages/movie/movie",
"pages/moviedetail/moviedetail",
"pages/cinemas/cinemas",
"pages/ticket/ticket",
"pages/music/music",
"pages/video/video",
"pages/logs/logs",
"pages/mine/mine"
],
"window":{
"backgroundTextStyle":"dark",
"navigationBarBackgroundColor": "#black",
"navigationBarTitleText": "娱乐之家",
"navigationBarTextStyle":"white",
"enablePullDownRefresh": true
},
"tabBar": {
"selectedColor": "#3385ff;",
"list": [{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath":"public/images/icons/home_light.png",
"selectedIconPath":"public/images/icons/home_fill_light.png"
}, {
"pagePath": "pages/music/music",
"text": "音乐",
"iconPath":"public/images/icons/music_light.png",
"selectedIconPath":"public/images/icons/music_fill_light.png"
}, {
"pagePath": "pages/video/video",
"text": "视频",
"iconPath":"public/images/icons/video_light.png",
"selectedIconPath":"public/images/icons/video_fill_light.png"
}, {
"pagePath": "pages/movie/movie",
"text": "电影",
"iconPath":"public/images/icons/record.png",
"selectedIconPath":"public/images/icons/record_fill.png"
}, {
"pagePath": "pages/mine/mine",
"text": "我",
"iconPath":"public/images/icons/my_light.png",
"selectedIconPath":"public/images/icons/my_fill_light.png"
}]
}
}