-
Notifications
You must be signed in to change notification settings - Fork 11
/
app.json
64 lines (64 loc) · 1.6 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
61
62
63
64
{
"pages": [
"pages/index/index",
"pages/success/success",
"pages/payment/payment",
"pages/order/order",
"pages/cake/cake",
"pages/cakeDetail/cakeDetail",
"pages/buy/buy",
"pages/phone/phone",
"pages/cart/cart",
"pages/user/user",
"pages/login/login",
"pages/logs/logs",
"pages/user/myorder/myorder",
"pages/user/myjzb/myjzb",
"pages/user/myorderdetals/myorderdetals",
"pages/user/myaddress/myaddress",
"pages/user/mycoupons/mycoupons",
"pages/user/editaddress/editaddress"
],
"window": {
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#576b95",
"navigationBarTitleText": "贝思客-Bestcake",
"navigationBarTextStyle": "#fff"
},
"tabBar": {
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "icon/home-1.png",
"selectedIconPath": "icon/home-2.png"
},
{
"pagePath": "pages/cake/cake",
"text": "蛋糕馆",
"iconPath": "icon/cake-1.png",
"selectedIconPath": "icon/cake-2.png"
},
{
"pagePath": "pages/cart/cart",
"text": "购物车",
"iconPath": "icon/cart-1.png",
"selectedIconPath": "icon/cart-2.png"
},
{
"pagePath": "pages/user/user",
"text": "我的",
"iconPath": "icon/my-1.png",
"selectedIconPath": "icon/my-2.png"
}
],
"backgroundColor": "#f3f3f3",
"color": "#999",
"selectedColor": "#576b95"
},
"networkTimeout": {
"request": 10000,
"downloadFile": 10000,
"uploadFile": 10000
}
}