pages.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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/parkingLists/parkingLists",
  42. "style": {
  43. "navigationBarTitleText": "停车场"
  44. }
  45. },
  46. {
  47. "path": "pages/myCars/myCars",
  48. "style": {
  49. "navigationStyle":"custom",// 隐藏系统导航栏
  50. "navigationBarTitleText": "我的车辆"
  51. }
  52. },
  53. {
  54. "path": "pages/payPage/payPage",
  55. "style": {
  56. // "navigationStyle":"custom",// 隐藏系统导航栏
  57. "navigationBarTitleText": "停车记录"
  58. }
  59. }
  60. ],
  61. "globalStyle": {
  62. "navigationBarTextStyle": "black",
  63. "navigationBarTitleText": "uView",
  64. "navigationBarBackgroundColor": "#F8F8F8",
  65. "backgroundColor": "#F8F8F8"
  66. },
  67. "tabBar": {
  68. "color": "#909399",
  69. "selectedColor": "#303133",
  70. "borderStyle": "black",
  71. "backgroundColor": "#ffffff",
  72. "list": [{
  73. "pagePath": "pages/index/index",
  74. "iconPath": "static/index.png",
  75. "selectedIconPath": "static/index-selected.png",
  76. "text": "首页"
  77. }, {
  78. "pagePath": "pages/center/index",
  79. "iconPath": "static/center.png",
  80. "selectedIconPath": "static/center-selected.png",
  81. "text": "我"
  82. }]
  83. }
  84. }