-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
57 lines (57 loc) · 1.42 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
{
"pages": [
"pages/index/index",
"pages/category/index",
"pages/good_list/index",
"pages/goods_detail/index",
"pages/cart/index",
"pages/collect/index",
"pages/order/index",
"pages/search/index",
"pages/user/index",
"pages/feedback/index",
"pages/login/index",
"pages/auth/index",
"pages/pay/index"
],
"window": {
"navigationBarBackgroundColor": "#eb4450",
"navigationBarTitleText": "黑马优购",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#888",
"selectedColor": "#333",
"backgroundColor": "white",
"position": "bottom",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "assets/tabBar/1.png",
"selectedIconPath": "assets/tabBar/2.png"
},
{
"pagePath": "pages/category/index",
"text": "分类",
"iconPath": "assets/tabBar/3.png",
"selectedIconPath": "assets/tabBar/4.png"
},
{
"pagePath": "pages/cart/index",
"text": "购物车",
"iconPath": "assets/tabBar/5.png",
"selectedIconPath": "assets/tabBar/6.png"
},
{
"pagePath": "pages/user/index",
"text": "我的",
"iconPath": "assets/tabBar/7.png",
"selectedIconPath": "assets/tabBar/8.png"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json"
}