forked from lin-xin/wxapp-mall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
60 lines (60 loc) · 1.54 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
51
52
53
54
55
56
57
58
59
60
{
"pages": [
"page/component/index",
"page/component/category/category",
"page/component/cart/cart",
"page/component/user/user",
"page/component/address/address",
"page/component/orders/orders",
"page/component/details/details",
"page/component/list/list",
"page/component/search/search"
],
"window": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "零食商贩",
"navigationBarBackgroundColor": "#AB956D",
"backgroundColor": "#eeeeee",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#b7b7b7",
"selectedColor": "#AB956D",
"borderStyle": "white",
"backgroundColor": "#f5f5f5",
"list": [
{
"pagePath": "page/component/index",
"iconPath": "image/12.png",
"selectedIconPath": "image/11.png",
"text": "主页"
},
{
"pagePath": "page/component/category/category",
"iconPath": "image/22.png",
"selectedIconPath": "image/21.png",
"text": "分类"
},
{
"pagePath": "page/component/cart/cart",
"iconPath": "image/32.png",
"selectedIconPath": "image/31.png",
"text": "购物车"
},
{
"pagePath": "page/component/user/user",
"iconPath": "image/42.png",
"selectedIconPath": "image/41.png",
"text": "我的"
}
]
},
"networkTimeout": {
"request": 10000,
"connectSocket": 10000,
"uploadFile": 10000,
"downloadFile": 10000
},
"debug": false,
"sitemapLocation": "sitemap.json"
}