-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathapp.json
41 lines (41 loc) · 1 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
{
"pages": [
"pages/film/index",
"pages/film/detail",
"pages/film/list",
"pages/member/index",
"pages/cinema/index",
"pages/film/web"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#282828",
"navigationBarTitleText": "卖座网-非官方",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": true
},
"tabBar": {
"selectedColor": "#d4237a",
"list": [
{
"pagePath": "pages/film/index",
"text": "电影",
"iconPath": "img/film.png",
"selectedIconPath": "img/film_selected.png"
},
{
"pagePath": "pages/cinema/index",
"text": "影院",
"iconPath": "img/cinema.png",
"selectedIconPath": "img/cinema_selected.png"
},
{
"pagePath": "pages/member/index",
"text": "我的",
"iconPath": "img/member.png",
"selectedIconPath": "img/member_selected.png"
}
]
},
"sitemapLocation": "sitemap.json"
}