-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathapp.json
41 lines (41 loc) · 1.04 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/welcome/welcome",
"pages/post/post",
"pages/nba/nba",
"pages/movies/movies",
"pages/post/post-detail/post-detail",
"pages/movies/more-movie/more-movie",
"pages/movies/movie-detail/movie-detail",
"pages/nba/nba-detail/nba-detail"
],
"window": {
"navigationBarBackgroundColor": "#355A83",
"navigationBarTextStyle": "white"
},
"tabBar": {
"borderStyle": "white",
"selectedColor": "#355A83",
"backgroundColor": "#fff",
"list": [
{
"pagePath": "pages/post/post",
"text": "阅读",
"iconPath": "/img/tab/yuedu.png",
"selectedIconPath": "/img/tab/yuedu_hl.png"
},
{
"pagePath": "pages/movies/movies",
"text": "电影",
"iconPath": "/img/tab/dianying.png",
"selectedIconPath": "/img/tab/dianying_hl.png"
},
{
"pagePath": "pages/nba/nba",
"text": "篮球",
"iconPath": "/img/tab/basketball.png",
"selectedIconPath": "/img/tab/basketball_hl.png"
}
]
}
}