-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathapp.json
49 lines (49 loc) · 1.32 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
{
"pages": [
"pages/index/index",
"pages/goods/detail/detail",
"pages/member/index/index",
"pages/goods/list/list",
"pages/catalog/catalog",
"pages/shopping/cart/cart",
"pages/auth/login/login"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fafafa",
"navigationBarTitleText": "ecshop小程序商城",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#2c2c2c",
"selectedColor": "#d81e06",
"backgroundColor": "#fafafa",
"borderStyle": "white",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/icon_home.png",
"selectedIconPath": "images/icon_home_active.png"
},
{
"pagePath": "pages/catalog/catalog",
"text": "分类",
"iconPath": "images/icon_catalog.png",
"selectedIconPath": "images/icon_catalog_active.png"
},
{
"pagePath": "pages/shopping/cart/cart",
"text": "购物车",
"iconPath": "images/icon_cart.png",
"selectedIconPath": "images/icon_cart_active.png"
},
{
"pagePath": "pages/member/index/index",
"text": "我的",
"iconPath": "images/icon_member.png",
"selectedIconPath": "images/icon_member_active.png"
}
]
}
}