-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
53 lines (53 loc) · 1.38 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
51
52
53
{
"pages": [
"pages/popular/index",
"pages/coming/index",
"pages/top/index",
"pages/my/index",
"pages/filmDetail/index",
"pages/celebrityDetail/index",
"pages/skin/index",
"pages/favorite/index",
"pages/history/index",
"pages/shake/index",
"pages/gallery/index",
"pages/setting/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#48a76d",
"navigationBarTitleText": "电影推荐小程序",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#000",
"selectedColor": "#48a76d",
"backgroundColor": "#fff",
"list": [
{
"pagePath": "pages/popular/index",
"text": "热映",
"iconPath": "/images/popular_icon.png",
"selectedIconPath": "/images/popular_active_icon.png"
},
{
"pagePath": "pages/coming/index",
"text": "待映",
"iconPath": "/images/coming_icon.png",
"selectedIconPath": "/images/coming_active_icon.png"
},
{
"pagePath": "pages/top/index",
"text": "排榜",
"iconPath": "/images/top_icon.png",
"selectedIconPath": "/images/top_active_icon.png"
},
{
"pagePath": "pages/my/index",
"text": "我的",
"iconPath": "/images/my_icon.png",
"selectedIconPath": "/images/my_active_icon.png"
}
]
}
}