forked from iamdarcy/hioshop-miniprogram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
64 lines (64 loc) · 2.12 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/app-auth/index",
"pages/category/index",
"pages/cart/cart",
"pages/share/index",
"pages/search/search",
"pages/order-check/index",
"pages/goods/goods",
"pages/ucenter/about/index",
"pages/ucenter/address/index",
"pages/ucenter/address-detail/index",
"pages/ucenter/index/index",
"pages/ucenter/settings/index",
"pages/ucenter/order-list/index",
"pages/ucenter/goods-list/index",
"pages/ucenter/order-details/index",
"pages/ucenter/express-info/index",
"pages/ucenter/footprint/index",
"pages/payResult/payResult",
"pages/payOffline/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#6e6d6b",
"selectedColor": "#ff3456",
"borderStyle": "white",
"backgroundColor": "#fff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/nav/icon-index-b.png",
"selectedIconPath": "images/nav/icon-index-r.png",
"text": "首页"
},
{
"pagePath": "pages/category/index",
"iconPath": "images/nav/icon-cate-off.png",
"selectedIconPath": "images/nav/icon-cate-on.png",
"text": "分类"
},
{
"pagePath": "pages/cart/cart",
"iconPath": "images/nav/icon-cart-b.png",
"selectedIconPath": "images/nav/icon-cart-r.png",
"text": "购物车"
},
{
"pagePath": "pages/ucenter/index/index",
"iconPath": "images/nav/icon-center-b.png",
"selectedIconPath": "images/nav/icon-center-r.png",
"text": "我的"
}
]
},
"sitemapLocation": "sitemap.json"
}