-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.json
46 lines (46 loc) · 1.25 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
{
"pages":[
"pages/calendar/index",
"pages/movie/movie",
"pages/search/index",
"pages/movie/search/search",
"pages/movie/movie-more/movie-more",
"pages/movie/selected/selected",
"pages/movie/movie-detail/movie-detail",
"pages/movie/movie-detail/rating/rating",
"pages/movie/movie-detail/celebrity/celebrity",
"pages/movie/movie-detail/movie-poster/movie-poster"
],
"window":{
"backgroundTextStyle":"dark",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "电影日历",
"navigationBarTextStyle":"black"
},
"tabBar": {
"color": "#999999",
"selectedColor": "#35495e",
"borderStyle": "white",
"backgroundColor": "#f5f5f5",
"list": [
{
"text": "日历",
"pagePath": "pages/calendar/index",
"iconPath": "images/order.png",
"selectedIconPath": "images/order_fill.png"
},
{
"text": "电影",
"pagePath": "pages/movie/movie",
"iconPath": "images/live.png",
"selectedIconPath": "images/live_fill.png"
},
{
"text": "搜索",
"pagePath": "pages/search/index",
"iconPath": "images/search.png",
"selectedIconPath": "images/search_fill.png"
}
]
}
}