-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
53 lines (53 loc) · 1.21 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/index/index",
"page/cart/cart",
"page/favorite/favorite",
"page/item/item",
"page/buy/buy",
"page/payment/payment",
"page/service/service"
],
"window": {
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTextStype": "black",
"navigationBarTitleText": "My Shop",
"backgroundColor": "#ffffff",
"backgroundTextStyle": "dark",
"enablePullDownRefresh": false
},
"tabBar": {
"color": " #cccccc",
"selectedColor": "#000000",
"backgroundColor": "#ffffff",
"borderStyle": "black",
"list": [{
"text": "主页",
"pagePath": "page/index/index",
"iconPath": "",
"selectedIconPath": ""
}, {
"text": "购物车",
"pagePath": "page/cart/cart",
"iconPath": "",
"selectedIconPath": ""
}, {
"text": "收藏夹",
"pagePath": "page/favorite/favorite",
"iconPath": "",
"selectedIconPath": ""
}, {
"text": "服务",
"pagePath": "page/service/service",
"iconPath": "",
"selectedIconPath": ""
}]
},
"networkTimeout": {
"request": 10000,
"connectSocket": 10000,
"uploadFile": 600000,
"downloadFile": 600000
},
"debug": true
}