app.json
1.1 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
{
"pages": [
"pages/login/login",
"pages/index/index",
"pages/my/my",
"pages/carDetail/carDetail",
"pages/privacy/privacy",
"pages/companyHome/companyHome",
"pages/companyMy/companyMy",
"pages/ownerDetail/ownerDetail",
"pages/societyHome/societyHome",
"pages/societyMy/societyMy"
],
"window": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#707070",
"selectedColor": "#3680FE",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "static/tabbarIcon/car.png",
"selectedIconPath": "static/tabbarIcon/car-active.png",
"text": "车辆管理"
},
{
"pagePath": "pages/my/my",
"iconPath": "static/tabbarIcon/my.png",
"selectedIconPath": "static/tabbarIcon/my-active.png",
"text": "我的"
}
]
},
"lazyCodeLoading": "requiredComponents",
"usingComponents": {}
}