-
Notifications
You must be signed in to change notification settings - Fork 112
/
app.json
53 lines (53 loc) · 1.47 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
{
"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"
],
"window": {
"navigationBarTextStyle": "#ffffff",
"navigationBarTitleText": "个体商店",
"navigationBarBackgroundColor": "#AB956D",
"backgroundColor": "#eeeeee",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#b7b7b7",
"selectedColor": "#AB956D",
"borderStyle": "#f5f5f5",
"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
}