forked from cqingt/wechatShop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
60 lines (60 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
56
57
58
59
60
{
"pages": [
"pages/index/index",
"pages/goodsDetail/goodsDetail",
"pages/user/user",
"pages/logs/logs",
"pages/cart/cart",
"pages/shop/index",
"pages/about/about",
"pages/myAddress/myAddress",
"pages/addAddress/addAddress",
"pages/myOrder/myOrder",
"pages/orderDetail/orderDetail"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "爱篮球",
"navigationBarTextStyle": "black",
"enablePullDownRefresh": "true",
"onReachBottomDistance": "50"
},
"tabBar": {
"borderStyle": "white",
"color": "#AAAAAA",
"selectedColor": "#FF6767",
"backgroundColor": "#FAFAFA",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/index.png",
"selectedIconPath": "images/index2.png"
},
{
"pagePath": "pages/myOrder/myOrder",
"text": "分类",
"iconPath": "images/class.png",
"selectedIconPath": "images/class2.png"
},
{
"pagePath": "pages/cart/cart",
"text": "购物车",
"iconPath": "images/cart.png",
"selectedIconPath": "images/cart2.png"
},
{
"pagePath": "pages/user/user",
"text": "我的",
"iconPath": "images/user.png",
"selectedIconPath": "images/user2.png"
}
]
},
"networkTimeout": {
"request": 10000,
"downloadFile": 10000
},
"debug": true
}