{
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
{
|
"path": "pages/index/index",
|
"style": {
|
"navigationStyle":"custom",
|
"enablePullDownRefresh": true
|
}
|
},
|
{
|
"path": "pages/mine/mine",
|
"style": {
|
"navigationStyle":"custom"
|
}
|
}
|
,{
|
"path" : "pages/parking/parking",
|
"style" : {
|
"navigationBarTitleText":"找停车位",
|
"navigationBarBackgroundColor":"white",
|
"enablePullDownRefresh": true
|
}
|
}
|
,{
|
"path" : "pages/addCar/addCar",
|
"style" : {
|
"navigationBarTitleText":"添加车辆",
|
"navigationBarBackgroundColor":"white"
|
}
|
}
|
,{
|
"path" : "pages/myCarList/myCarList",
|
"style" : {
|
"navigationStyle":"custom"
|
}
|
}
|
,{
|
"path" : "pages/gaode/gaode",
|
"style" : {
|
"navigationStyle":"custom"
|
}
|
}
|
,{
|
"path" : "pages/login/login",
|
"style" : {
|
"navigationBarTitleText":"登录",
|
"navigationBarBackgroundColor":"white"
|
}
|
}
|
,{
|
"path" : "pages/myCarListShow/myCarListShow",
|
"style" : {
|
"navigationStyle":"custom"
|
}
|
}
|
// ,{
|
// "path" : "pages/parkDetail/parkDetail",
|
// "style" : {
|
// "navigationBarTitleText":"车库详情",
|
// "navigationBarBackgroundColor":"white"
|
// }
|
// }
|
,{
|
"path" : "pages/parkInfo/parkInfo",
|
"style" : {
|
"navigationBarTitleText":"车库详情",
|
"navigationBarBackgroundColor":"white",
|
"enablePullDownRefresh": true
|
}
|
}
|
],
|
"globalStyle": {
|
"navigationBarTextStyle": "black",
|
"navigationBarTitleText": "uni-app",
|
"navigationBarBackgroundColor": "#F8F8F8",
|
"backgroundColor": "#F8F8F8"
|
}
|
}
|