-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
43 lines (43 loc) · 1.14 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
{
"pages": [
"pages/index/index",
"pages/cart/cart",
"pages/profile/profile",
"pages/category/category",
"pages/logs/logs"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#51c8cc",
"navigationBarTitleText": "大柑严选",
"navigationBarTextStyle": "black"
},
"tabBar": {
"list": [
{
"pagePath": "pages/index/index",
"text": "商城",
"iconPath": "/images/icons/home.png",
"selectedIconPath": "/images/icons/home-active.png"
},
{
"pagePath": "pages/category/category",
"text": "分类",
"iconPath": "/images/icons/category.png",
"selectedIconPath": "/images/icons/category-active.png"
},
{
"pagePath": "pages/cart/cart",
"text": "购物车",
"iconPath": "/images/icons/cart.png",
"selectedIconPath": "/images/icons/cart-active.png"
},
{
"pagePath": "pages/profile/profile",
"text": "个人中心",
"iconPath": "/images/icons/profile.png",
"selectedIconPath": "/images/icons/profile-active.png"
}
]
}
}