-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
43 lines (43 loc) · 1.07 KB
/
Copy pathapp.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"pages":[
"pages/index/index",
"pages/logs/logs",
"pages/movies/movies",
"pages/movie-detail/movie-detail",
"pages/profile/profile",
"pages/search/search"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle":"black",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#999999",
"selectedColor": "#35495e",
"borderStyle": "white",
"backgroundColor": "#f5f5f5",
"list": [
{
"text": "搜索",
"pagePath": "pages/search/search",
"iconPath": "images/search.png",
"selectedIconPath": "images/search-actived.png"
},
{
"text": "榜单",
"pagePath": "pages/index/index",
"iconPath": "images/board.png",
"selectedIconPath": "images/board-actived.png"
},
{
"text": "我的",
"pagePath": "pages/profile/profile",
"iconPath": "images/home.png",
"selectedIconPath": "images/home-actived.png"
}
]
}
}