-
Notifications
You must be signed in to change notification settings - Fork 33
/
app.json
57 lines (57 loc) · 1.55 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/goodsList/goodsList",
"pages/shopping/shopping",
"pages/newAddr/newAddr",
"pages/chooseAddress/chooseAddress",
"pages/sort/sort",
"pages/mine/mine",
"pages/order/order",
"pages/logs/logs"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#0eb6ff",
"navigationBarTitleText": "盒马生鲜",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#a1a1a1",
"selectedColor": "#2af8ff",
"backgroundColor": "#ffffff",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "./assets/icons/hema.png",
"selectedIconPath": "./assets/icons/hema-sel.png",
"text": "首页"
},
{
"pagePath": "pages/sort/sort",
"iconPath": "./assets/icons/sort.png",
"selectedIconPath": "./assets/icons/sort-sel.png",
"text": "分类"
},
{
"pagePath": "pages/shopping/shopping",
"iconPath": "./assets/icons/shopping.png",
"selectedIconPath": "./assets/icons/shopping-sel.png",
"text": "购物车"
},
{
"pagePath": "pages/mine/mine",
"iconPath": "./assets/icons/mine.png",
"selectedIconPath": "./assets/icons/mine-sel.png",
"text": "我的"
}
]
},
"usingComponents": {
"van-grid": "@vant/weapp/grid/index",
"van-grid-item": "@vant/weapp/grid-item/index",
"van-button": "@vant/weapp/button/index"
},
"sitemapLocation": "sitemap.json"
}