forked from coderwhy/LearnMiniProgram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
42 lines (42 loc) · 1.1 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
{
"pages": [
"pages/home/home",
"pages/category/category",
"pages/cart/cart",
"pages/profile/profile"
],
"window": {
"navigationBarBackgroundColor": "#ff5777",
"navigationBarTextStyle": "white"
},
"tabBar": {
"selectedColor": "#ff5777",
"list": [
{
"pagePath": "pages/home/home",
"text": "首页",
"iconPath": "/assets/tabbar/home.png",
"selectedIconPath": "/assets/tabbar/home_active.png"
},
{
"pagePath": "pages/category/category",
"text": "分类",
"iconPath": "/assets/tabbar/category.png",
"selectedIconPath": "/assets/tabbar/category_active.png"
},
{
"pagePath": "pages/cart/cart",
"text": "购物车",
"iconPath": "/assets/tabbar/cart.png",
"selectedIconPath": "/assets/tabbar/cart_active.png"
},
{
"pagePath": "pages/profile/profile",
"text": "我的",
"iconPath": "/assets/tabbar/profile.png",
"selectedIconPath": "/assets/tabbar/profile_active.png"
}
]
},
"sitemapLocation": "sitemap.json"
}