123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTitleText": "城市智慧停车"
- }
- },
- {
- "path": "pages/center/index",
- "style": {
- "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "城市智慧停车"
- }
- },
- {
- "path": "pages/center/phoneLogin/phoneLogin",
- "style": {
- "navigationBarTitleText": "手机号登录"
- }
- },
- {
- "path": "pages/center/order/order",
- "style": {
- "navigationBarTitleText": "停车列表"
- }
- },
- {
- "path": "pages/center/order/orderDetails/orderDetails",
- "style": {
- // "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTitleText": "订单详情"
- }
- },
- {
- "path": "pages/center/invoice/invoice",
- "style": {
- "navigationBarTitleText": "我的发票"
- }
- },
- {
- "path": "pages/center/invoice/makeinvoice/makeinvoice",
- "style": {
- "navigationBarTitleText": "我要开票"
- }
- },
- {
- "path": "pages/center/invoice/invoiceDetails/invoiceDetails",
- "style": {
- "navigationBarTitleText": "发票详情"
- }
- },
- {
- "path": "pages/parkingLists/parkingLists",
- "style": {
- "navigationStyle":"custom",
- "navigationBarTitleText": "停车场"
- }
- },
- {
- "path": "pages/myCars/myCars",
- "style": {
- "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTitleText": "我的车辆"
- }
- },
- {
- "path": "pages/payPage/payPage",
- "style": {
- // "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTitleText": "停车记录"
- }
- }
- ,{
- "path" : "pages/parkingInformation/parkingInformation",
- "style" :
- {
- "navigationBarTitleText": "停车场信息",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#008CFF",
- "navigationBarTextStyle": "white"
- }
-
- }
- ,{
- "path" : "pages/chargeStandard/chargeStandard",
- "style" :
- {
- "navigationBarTitleText": "收费标准",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#008CFF",
- "navigationBarTextStyle": "white"
- }
-
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uView",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#909399",
- "selectedColor": "#303133",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/index.png",
- "selectedIconPath": "static/index-selected.png",
- "text": "首页"
- }, {
- "pagePath": "pages/parkingLists/parkingLists",
- "iconPath": "static/car_h.png",
- "selectedIconPath": "static/car.png",
- "text": "找车位"
- }, {
- "pagePath": "pages/center/index",
- "iconPath": "static/center.png",
- "selectedIconPath": "static/center-selected.png",
- "text": "我"
- }]
- }
- }
|