app.json
1.4 KB
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/shopping/shopping",
"pages/bubbles/bubbles",
"pages/mine/mine",
"pages/mine/mine-popularityInfo/mine-popularityInfo",
"pages/mine/mine-coupon/mine-coupon"
],
"window": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#858E97",
"selectedColor": "#004F90",
"borderStyle": "white",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "static/images/tabbar/home.png",
"selectedIconPath": "static/images/tabbar/home-active.png",
"text": "首页"
},
{
"pagePath": "pages/shopping/shopping",
"iconPath": "static/images/tabbar/service.png",
"selectedIconPath": "static/images/tabbar/service-active.png",
"text": "超级泡泡"
},
{
"pagePath": "pages/bubbles/bubbles",
"iconPath": "static/images/tabbar/forum.png",
"selectedIconPath": "static/images/tabbar/forum-active.png",
"text": "购物袋"
},
{
"pagePath": "pages/mine/mine",
"iconPath": "static/images/tabbar/mine.png",
"selectedIconPath": "static/images/tabbar/mine-active.png",
"text": "我的"
}
]
},
"usingComponents": {}
}