pages.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. "navigationBarTitleText": "停车场"
  62. }
  63. },
  64. {
  65. "path": "pages/myCars/myCars",
  66. "style": {
  67. "navigationStyle":"custom",// 隐藏系统导航栏
  68. "navigationBarTitleText": "我的车辆"
  69. }
  70. },
  71. {
  72. "path": "pages/payPage/payPage",
  73. "style": {
  74. // "navigationStyle":"custom",// 隐藏系统导航栏
  75. "navigationBarTitleText": "停车记录"
  76. }
  77. }
  78. ],
  79. "globalStyle": {
  80. "navigationBarTextStyle": "black",
  81. "navigationBarTitleText": "uView",
  82. "navigationBarBackgroundColor": "#F8F8F8",
  83. "backgroundColor": "#F8F8F8"
  84. },
  85. "tabBar": {
  86. "color": "#909399",
  87. "selectedColor": "#303133",
  88. "borderStyle": "black",
  89. "backgroundColor": "#ffffff",
  90. "list": [{
  91. "pagePath": "pages/index/index",
  92. "iconPath": "static/index.png",
  93. "selectedIconPath": "static/index-selected.png",
  94. "text": "首页"
  95. }, {
  96. "pagePath": "pages/center/index",
  97. "iconPath": "static/center.png",
  98. "selectedIconPath": "static/center-selected.png",
  99. "text": "我"
  100. }]
  101. }
  102. }