pages.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/index/index",
  8. "style": {
  9. "navigationStyle":"custom",// 隐藏系统导航栏
  10. "navigationBarTitleText": "城市智慧停车"
  11. }
  12. },
  13. {
  14. "path": "pages/center/index",
  15. "style": {
  16. "navigationStyle":"custom",// 隐藏系统导航栏
  17. "navigationBarTextStyle": "white",
  18. "navigationBarTitleText": "城市智慧停车"
  19. }
  20. },
  21. {
  22. "path": "pages/center/phoneLogin/phoneLogin",
  23. "style": {
  24. "navigationBarTitleText": "手机号登录"
  25. }
  26. },
  27. {
  28. "path": "pages/center/order/order",
  29. "style": {
  30. "navigationBarTitleText": "停车列表"
  31. }
  32. },
  33. {
  34. "path": "pages/center/order/orderDetails/orderDetails",
  35. "style": {
  36. // "navigationStyle":"custom",// 隐藏系统导航栏
  37. "navigationBarTitleText": "订单详情"
  38. }
  39. },
  40. {
  41. "path": "pages/center/invoice/invoice",
  42. "style": {
  43. "navigationBarTitleText": "我的发票"
  44. }
  45. },
  46. {
  47. "path": "pages/center/invoice/makeinvoice/makeinvoice",
  48. "style": {
  49. "navigationBarTitleText": "我要开票"
  50. }
  51. },
  52. {
  53. "path": "pages/center/invoice/invoiceDetails/invoiceDetails",
  54. "style": {
  55. "navigationBarTitleText": "发票详情"
  56. }
  57. },
  58. {
  59. "path": "pages/parkingLists/parkingLists",
  60. "style": {
  61. "navigationStyle":"custom",
  62. "navigationBarTitleText": "停车场"
  63. }
  64. },
  65. {
  66. "path": "pages/myCars/myCars",
  67. "style": {
  68. "navigationStyle":"custom",// 隐藏系统导航栏
  69. "navigationBarTitleText": "我的车辆"
  70. }
  71. },
  72. {
  73. "path": "pages/payPage/payPage",
  74. "style": {
  75. // "navigationStyle":"custom",// 隐藏系统导航栏
  76. "navigationBarTitleText": "停车记录"
  77. }
  78. }
  79. ,{
  80. "path" : "pages/parkingInformation/parkingInformation",
  81. "style" :
  82. {
  83. "navigationBarTitleText": "停车场信息",
  84. "enablePullDownRefresh": false,
  85. "navigationBarBackgroundColor": "#008CFF",
  86. "navigationBarTextStyle": "white"
  87. }
  88. }
  89. ,{
  90. "path" : "pages/chargeStandard/chargeStandard",
  91. "style" :
  92. {
  93. "navigationBarTitleText": "收费标准",
  94. "enablePullDownRefresh": false,
  95. "navigationBarBackgroundColor": "#008CFF",
  96. "navigationBarTextStyle": "white"
  97. }
  98. }
  99. ],
  100. "globalStyle": {
  101. "navigationBarTextStyle": "black",
  102. "navigationBarTitleText": "uView",
  103. "navigationBarBackgroundColor": "#F8F8F8",
  104. "backgroundColor": "#F8F8F8"
  105. },
  106. "tabBar": {
  107. "color": "#909399",
  108. "selectedColor": "#303133",
  109. "borderStyle": "black",
  110. "backgroundColor": "#ffffff",
  111. "list": [{
  112. "pagePath": "pages/index/index",
  113. "iconPath": "static/index.png",
  114. "selectedIconPath": "static/index-selected.png",
  115. "text": "首页"
  116. }, {
  117. "pagePath": "pages/parkingLists/parkingLists",
  118. "iconPath": "static/car_h.png",
  119. "selectedIconPath": "static/car.png",
  120. "text": "找车位"
  121. }, {
  122. "pagePath": "pages/center/index",
  123. "iconPath": "static/center.png",
  124. "selectedIconPath": "static/center-selected.png",
  125. "text": "我"
  126. }]
  127. }
  128. }