-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
47 lines (47 loc) · 1.2 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
{
"pages": [
"pages/activity/activity",
"pages/collection/collection",
"pages/order/order",
"pages/detail/detail",
"pages/search/search"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#ff5687",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#757575",
"selectedColor": "#ff5687",
"list": [
{
"pagePath": "pages/activity/activity",
"text": "活动",
"iconPath": "assets/imgs/act.png",
"selectedIconPath": "assets/imgs/act-selected.png"
},
{
"pagePath": "pages/collection/collection",
"text": "收藏",
"iconPath": "assets/imgs/collection.png",
"selectedIconPath": "assets/imgs/collection-selected.png"
},
{
"pagePath": "pages/order/order",
"text": "订单",
"iconPath": "assets/imgs/order.png",
"selectedIconPath": "assets/imgs/order-selected.png"
}
]
},
"networkTimeout": {
"request": 20000,
"connectSocket": 20000,
"uploadFile": 20000,
"downloadFile": 20000
},
"sitemapLocation": "sitemap.json"
}