-
Notifications
You must be signed in to change notification settings - Fork 51
/
app.json
105 lines (105 loc) · 3.2 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
{
"pages": [
"pages/index/index",
"pages/goods/list/list",
"pages/goods/detail/detail",
"pages/goods/search/search",
"pages/points/index/index",
"pages/points/detail/detail",
"pages/points/checkout/checkout",
"pages/points/complete/complete",
"pages/catalog/catalog",
"pages/message/detail/detail",
"pages/message/list/list",
"pages/message/activity/index",
"pages/message/activity/detail",
"pages/message/help/index",
"pages/message/notices/index",
"pages/message/copyright/copyright",
"pages/shopping/cart/cart",
"pages/shopping/checkout/checkout",
"pages/shopping/payment/payment",
"pages/auth/login/login",
"pages/auth/forget/forget",
"pages/auth/register/register",
"pages/auth/changepassword/changepassword",
"pages/member/index/index",
"pages/member/setting/setting",
"pages/member/about/about",
"pages/member/address/list/list",
"pages/member/address/edit/edit",
"pages/member/order/list/list",
"pages/member/order/detail/detail",
"pages/member/favorite/favorite",
"pages/member/coupon/coupon",
"pages/member/cashgift/info/info",
"pages/member/cashgift/select/select",
"pages/member/userinfo/userinfo",
"pages/member/assets/index/index",
"pages/member/balance/history/history",
"pages/member/withdraw/index/index",
"pages/member/withdraw/info/info",
"pages/member/withdraw/complete/complete",
"pages/member/withdraw/history/history",
"pages/member/score/history/history",
"pages/member/invoice/index/index",
"pages/member/comment/add/add",
"pages/member/comment/list/list",
"pages/member/level/level",
"pages/member/invite/index/index",
"pages/member/invite/info/info"
],
"usingComponents": {
"loginModal": "/components/loginModal/loginModal"
},
"permission": {
"scope.userLocation": {
"desc": "位置信息仅用于匹配,不收集您的位置信息。"
}
},
"cloud": true,
"window": {
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#f0f2f5",
"navigationBarTitleText": "weeShop",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#2c2c2c",
"selectedColor": "#9c27ff",
"backgroundColor": "#ffffff",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/icon_tabbar-1.png",
"selectedIconPath": "images/icon_tabbar-1-active.png"
},
{
"pagePath": "pages/catalog/catalog",
"text": "分类",
"iconPath": "images/icon_tabbar-2.png",
"selectedIconPath": "images/icon_tabbar-2-active.png"
},
{
"pagePath": "pages/shopping/cart/cart",
"text": "购物车",
"iconPath": "images/icon_tabbar-3.png",
"selectedIconPath": "images/icon_tabbar-3-active.png"
},
{
"pagePath": "pages/member/index/index",
"text": "我的",
"iconPath": "images/icon_tabbar-4.png",
"selectedIconPath": "images/icon_tabbar-4-active.png"
}
]
},
"networkTimeout": {
"request": 20000,
"downloadFile": 30000
},
"debug": false,
"sitemapLocation": "sitemap.json"
}