pages.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. "navigationBarTitleText": "城市智慧停车"
  17. }
  18. },
  19. {
  20. "path": "pages/center/phoneLogin/phoneLogin",
  21. "style": {
  22. "navigationBarTitleText": "手机号登录"
  23. }
  24. },
  25. {
  26. "path": "pages/center/order/order",
  27. "style": {
  28. "navigationBarTitleText": "停车列表"
  29. }
  30. },
  31. {
  32. "path": "pages/center/order/orderDetails/orderDetails",
  33. "style": {
  34. // "navigationStyle":"custom",// 隐藏系统导航栏
  35. "navigationBarTitleText": "订单详情"
  36. }
  37. },
  38. {
  39. "path": "pages/parkingLists/parkingLists",
  40. "style": {
  41. "navigationBarTitleText": "停车场"
  42. }
  43. },
  44. {
  45. "path": "pages/myCars/myCars",
  46. "style": {
  47. "navigationStyle":"custom",// 隐藏系统导航栏
  48. "navigationBarTitleText": "我的车辆"
  49. }
  50. },
  51. {
  52. "path": "pages/payPage/payPage",
  53. "style": {
  54. // "navigationStyle":"custom",// 隐藏系统导航栏
  55. "navigationBarTitleText": "停车记录"
  56. }
  57. }
  58. ],
  59. "globalStyle": {
  60. "navigationBarTextStyle": "black",
  61. "navigationBarTitleText": "uView",
  62. "navigationBarBackgroundColor": "#F8F8F8",
  63. "backgroundColor": "#F8F8F8"
  64. },
  65. "tabBar": {
  66. "color": "#909399",
  67. "selectedColor": "#303133",
  68. "borderStyle": "black",
  69. "backgroundColor": "#ffffff",
  70. "list": [{
  71. "pagePath": "pages/index/index",
  72. "iconPath": "static/index.png",
  73. "selectedIconPath": "static/index-selected.png",
  74. "text": "首页"
  75. }, {
  76. "pagePath": "pages/center/index",
  77. "iconPath": "static/center.png",
  78. "selectedIconPath": "static/center-selected.png",
  79. "text": "我"
  80. }]
  81. }
  82. }