-
Notifications
You must be signed in to change notification settings - Fork 76
/
app.json
60 lines (60 loc) · 1.64 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/shop/index/index",
"pages/shop/contact/contact",
"pages/customer/index/index",
"pages/customer/login/login",
"pages/goods/score/list",
"pages/order/index/index",
"pages/goods/score/score",
"pages/goods/favorite/favorite",
"pages/goods/index/index",
"pages/shop/detail/detail",
"pages/cart/index/index",
"pages/coupon/index/index",
"pages/order/detail/detail",
"pages/order/trade/trade",
"pages/order/trace/trace",
"pages/coupon/use/use",
"pages/goods/history/history",
"pages/refund/detail/detail",
"pages/refund/apply/apply",
"pages/address/index/index",
"pages/address/edit/edit"
],
"window": {
"navigationBarBackgroundColor": "#1296db"
},
"tabBar": {
"color": "#666666",
"selectedColor": "#1296db",
"borderStyle": "white",
"backgroundColor": "#FAFAFA",
"list": [
{
"iconPath": "images/tab/home.png",
"selectedIconPath": "images/tab/home-active.png",
"pagePath": "pages/shop/index/index",
"text": "店铺"
},
{
"iconPath": "images/tab/cart.png",
"selectedIconPath": "images/tab/cart-active.png",
"pagePath": "pages/cart/index/index",
"text": "购物车"
},
{
"iconPath": "images/tab/order.png",
"selectedIconPath": "images/tab/order-active.png",
"pagePath": "pages/order/index/index",
"text": "订单"
},
{
"iconPath": "images/tab/user.png",
"selectedIconPath": "images/tab/user-active.png",
"pagePath": "pages/customer/index/index",
"text": "我的"
}
]
}
}