forked from zce/weapp-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
50 lines (50 loc) · 1.24 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
47
48
49
50
{
"pages": [
"pages/splash/splash",
"pages/board/board",
"pages/list/list",
"pages/item/item",
"pages/search/search",
"pages/profile/profile"
],
"window": {
"navigationBarBackgroundColor": "#ededed",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "电影 « 豆瓣",
"backgroundColor": "#f8f9fb",
"backgroundTextStyle": "dark",
"enablePullDownRefresh": false
},
"tabBar": {
"color": "#666666",
"selectedColor": "#000000",
"borderStyle": "white",
"backgroundColor": "#f7f7f7",
"list": [
{
"text": "榜单",
"pagePath": "pages/board/board",
"iconPath": "images/board.png",
"selectedIconPath": "images/board-actived.png"
},
{
"text": "搜索",
"pagePath": "pages/search/search",
"iconPath": "images/search.png",
"selectedIconPath": "images/search-actived.png"
},
{
"text": "我的",
"pagePath": "pages/profile/profile",
"iconPath": "images/profile.png",
"selectedIconPath": "images/profile-actived.png"
}
]
},
"networkTimeout": {
"request": 20000,
"downloadFile": 20000
},
"debug": false,
"sitemapLocation": "sitemap.json"
}