-
Notifications
You must be signed in to change notification settings - Fork 29
/
app.json
111 lines (111 loc) · 3.38 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"pages": [
"pages/home/index",
"pages/category/index",
"pages/shoppingCart/index",
"pages/shoppingCart/cart",
"pages/mine/index",
"pages/mine/info",
"pages/mine/integralLog",
"pages/mine/redPack",
"pages/lotteryDraw/index",
"pages/lotteryDraw/detail",
"pages/lotteryDraw/joinUsers",
"pages/lotteryDraw/publish",
"pages/lotteryDraw/winnerLog",
"pages/lotteryDraw/mineLottery",
"pages/address/index",
"pages/address/edit",
"pages/distributor/orderTaking",
"pages/dailySign/index",
"pages/merchant/apply",
"pages/other/setting",
"pages/other/suggest",
"pages/other/login",
"pages/other/protocol",
"pages/other/city",
"pages/other/location",
"pages/other/cropImage",
"pages/other/webview"
],
"subPackages": [
{
"root": "packageGoods",
"name": "packageGoods",
"pages": [
"activity/index",
"cateGoods/index",
"goods/detail",
"order/index",
"order/goodsList",
"order/orderGoods",
"order/confirm",
"order/confirmSingle",
"order/detail",
"preSaleGoods/index",
"spellGroup/index",
"spellGroup/invite",
"spellGroup/detail"
]
}
],
"window": {
"navigationStyle": "custom",
"backgroundColorTop": "#FF7700",
"backgroundTextStyle": "dark",
"backgroundColorBottom": "#f7f7f7",
"navigationBarBackgroundColor": "#FFFFFF",
"navigationBarTitleText": "超市连锁小店",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#999",
"selectedColor": "#fe8824",
"backgroundColor": "#fff",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/home/index",
"iconPath": "/images/tabBar/home.png",
"selectedIconPath": "/images/tabBar/home_active.png",
"text": "首页"
},
{
"pagePath": "pages/category/index",
"iconPath": "/images/tabBar/category.png",
"selectedIconPath": "/images/tabBar/category_active.png",
"text": "分类"
},
{
"pagePath": "pages/shoppingCart/index",
"iconPath": "/images/tabBar/shopping_cart.png",
"selectedIconPath": "/images/tabBar/shopping_cart_active.png",
"text": "购物车"
},
{
"pagePath": "pages/mine/index",
"iconPath": "/images/tabBar/mine.png",
"selectedIconPath": "/images/tabBar/mine_active.png",
"text": "我的"
}
]
},
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序定位"
}
},
"plugins": {
"routePlan": {
"version": "1.0.5",
"provider": "wx50b5593e81dd937a"
}
},
"networkTimeout": {
"request": 10000,
"downloadFile": 10000
},
"debug": true,
"usingComponents": {}
}