app.json
868 字节
{
"pages": [
"pages/login/login",
"pages/index/index",
"pages/my/my",
"pages/carDetail/carDetail"
],
"window": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#707070",
"selectedColor": "#3680FE",
"borderStyle": "black",
"backgroundColor": "#fff",
"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": "我的"
}
]
},
"usingComponents": {}
}