-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
67 lines (66 loc) · 2.03 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
65
66
67
{
"pages": [
"pages/index/index",
"pages/login/login",
"pages/cart/cart",
"pages/order/order",
"pages/mine/mine",
"pages/message/message",
"pages/message/noticeDetail/noticeDetail",
"pages/message/noticeMessage/noticeMessage",
"pages/message/orderMessage/orderMessage",
"pages/message/promotionMessage/promotionMessage",
"pages/product/product",
"pages/product/search/search",
"pages/product/productDetail/productDetail",
"pages/product/productClass/productClass",
"pages/product/productScreen/productScreen"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "",
"navigationBarTextStyle": "black",
"enablePullDownRefresh": true,
"onReachBottomDistance": "50",
"backgroundColor": "#f65a44"
},
"tabBar": {
"color": "#3d4145",
"selectedColor": "#f65a44",
"backgroundColor": "#fafafa",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/index/index",
"text": "商品",
"iconPath": "static/img/iconPath/shopping.png",
"selectedIconPath": "static/img/selectedIconPath/shopping.png"
},
{
"pagePath": "pages/cart/cart",
"text": "购物车",
"iconPath": "static/img/iconPath/gouwuche.png",
"selectedIconPath": "static/img/selectedIconPath/gouwuche.png"
},
{
"pagePath": "pages/order/order",
"text": "订单",
"iconPath": "static/img/iconPath/wodedingdan.png",
"selectedIconPath": "static/img/selectedIconPath/wodedingdan.png"
},
{
"pagePath": "pages/message/message",
"text": "消息",
"iconPath": "static/img/iconPath/xiaoxizhongxin.png",
"selectedIconPath": "static/img/selectedIconPath/xiaoxizhongxin.png"
},
{
"pagePath": "pages/mine/mine",
"text": "我的",
"iconPath": "static/img/iconPath/geren.png",
"selectedIconPath": "static/img/selectedIconPath/geren.png"
}
]
}
}