-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
45 lines (45 loc) · 1.17 KB
/
app.json
File metadata and controls
45 lines (45 loc) · 1.17 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
41
42
43
44
45
{
"pages": [
"pages/welcome/welcome",
"pages/posts/posts",
"pages/post-detail/post-detail",
"pages/movies/movies",
"pages/more-movie/more-movie",
"pages/movie-detail/movie-detail"
],
"usingComponents": {
"movie": "/components/movie/index",
"l-rate":"/miniprogram_npm/lin-ui/rate/index",
"l-avatar": "/miniprogram_npm/lin-ui/avatar/index",
"l-search-bar": "/miniprogram_npm/lin-ui/search-bar/index",
"l-icon": "/miniprogram_npm/lin-ui/icon/index"
},
"window": {
"navigationBarBackgroundColor": "#b3d4db"
},
"tabBar": {
"borderStyle": "white",
"selectedColor": "#333333",
"position": "bottom",
"color": "#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"
}
]
},
"sitemapLocation": "sitemap6.json",
"requiredBackgroundModes": [
"audio",
"location"
]
}