-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
55 lines (55 loc) · 1.48 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
{
"pages":[
"pages/home/home",
"pages/category/category",
"pages/cart/cart",
"pages/my/my",
"pages/theme/theme",
"pages/product/product",
"pages/order/order",
"pages/pay-result/pay-result"
],
"window":{
"navigationBarTitleText": "",
"navigationBarTextStyle": "#FFFFFF",
"navigationBarBackgroundColor": "#AB956D",
"backgroundColor": "#FFFFFF",
"backgroundTextStyle": "dark",
"enablePullDownRefresh":true
},
"tabBar":{
"list":[{
"pagePath":"pages/home/home",
"iconPath":"imgs/toolbar/home.png",
"selectedIconPath":"imgs/toolbar/[email protected]",
"text":"主页"
},{
"pagePath":"pages/category/category",
"iconPath":"imgs/toolbar/category.png",
"selectedIconPath":"imgs/toolbar/[email protected]",
"text":"分类"
},{
"pagePath":"pages/cart/cart",
"iconPath":"imgs/toolbar/cart.png",
"selectedIconPath":"imgs/toolbar/[email protected]",
"text":"购物车"
},{
"pagePath":"pages/my/my",
"iconPath":"imgs/toolbar/my.png",
"selectedIconPath":"imgs/toolbar/[email protected]",
"text":"我的"
}],
"backgroundColor": "#F5F5F5",
"selectedColor": "#AB956D",
"color": "#989898",
"borderStyle": "white",
"position":"bottom"
},
"networkTimeout": {
"request": 20000,
"connectSocket": 20000,
"uploadFile": 20000,
"downloadFile": 20000
},
"debug":true
}