-
Notifications
You must be signed in to change notification settings - Fork 40
/
app.json
68 lines (68 loc) · 1.79 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
{
"pages": [
"pages/start/start",
"pages/index/index",
"pages/logs/logs",
"pages/login/login",
"pages/my/my",
"pages/cart/cart",
"pages/goods-detail/goods-detail",
"pages/template-cart/template-cart",
"pages/topic/topic",
"pages/topic-list/topic-list",
"pages/coupons/coupons",
"pages/my-coupons/my-coupons",
"pages/score/score",
"pages/withdraw/withdraw",
"pages/fav-list/fav-list",
"pages/address/address",
"pages/address-add/address-add",
"pages/order-list/order-list",
"pages/cate-list/cate-list",
"pages/order-detail/order-detail",
"pages/notice/notice",
"pages/cate/cate",
"pages/logistics/logistics",
"pages/success/success",
"pages/pay-order/pay-order",
"pages/freshman/freshman",
"pages/search/search"
],
"window": {
"navigationStyle": "custom",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#838383",
"selectedColor": "#b4282d",
"borderStyle": "white",
"backgroundColor": "#fff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/nav/home-off.png",
"selectedIconPath": "images/nav/home-on.png",
"text": "首页"
},
{
"pagePath": "pages/cate/cate",
"iconPath": "images/nav/menu-off.png",
"selectedIconPath": "images/nav/menu-on.png",
"text": "分类"
},
{
"pagePath": "pages/cart/cart",
"iconPath": "images/nav/cart-off.png",
"selectedIconPath": "images/nav/cart-on.png",
"text": "购物车"
},
{
"pagePath": "pages/my/my",
"iconPath": "images/nav/my-off.png",
"selectedIconPath": "images/nav/my-on.png",
"text": "我的"
}
]
},
"sitemapLocation": "sitemap.json"
}