-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
40 lines (40 loc) · 1.08 KB
/
app.json
File metadata and controls
40 lines (40 loc) · 1.08 KB
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
{
"pages": [
"pages/welcome/welcome",
"pages/posts/posts",
"pages/post-detail/post-detail",
"pages/movies/movies",
"pages/movie-detail/movie-detail",
"pages/more-movie/more-movie"
],
"window": {
"navigationBarBackgroundColor": "#C22A1E"
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"usingComponents": {
"movie": "/components/movie/index"
},
"requiredBackgroundModes": [
"audio",
"location"
],
"tabBar": {
"color": "333333",
"selectedColor": "999999",
"list": [
{
"text": "阅读",
"pagePath": "pages/posts/posts",
"iconPath": "/images/tab/post.png",
"selectedIconPath": "/images/tab/post@highlight.png"
},
{
"text": "电影",
"pagePath": "pages/movies/movies",
"iconPath": "/images/tab/movie.png",
"selectedIconPath": "/images/tab/movie@highlight.png"
}
]
}
}