-
Notifications
You must be signed in to change notification settings - Fork 11
/
app.json
36 lines (36 loc) · 945 Bytes
/
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
{
"pages": [
"pages/movies/index",
"pages/movies/detail/detail",
"pages/movies/block/block",
"pages/movies/poster/poster",
"pages/movies/ratingbar/ratingbar",
"pages/movies/more/more",
"pages/mine/mine"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#ffae00",
"navigationBarTitleText": "电影排行榜",
"navigationBarTextStyle": "white"
},
"tabBar": {
"list": [
{
"pagePath": "pages/movies/index",
"text": "电影",
"iconPath": "images/tabbar/movie.png",
"selectedIconPath": "images/tabbar/movieSelected.png"
},
{
"pagePath": "pages/mine/mine",
"text": "我的",
"iconPath": "images/tabbar/mine.png",
"selectedIconPath": "images/tabbar/mineSelected.png"
}
],
"borderStyle": "black",
"selectedColor": "#ffae00"
},
"sitemapLocation": "sitemap.json"
}