pages.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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/login/login",
  15. "style": {
  16. "navigationStyle":"custom",// 隐藏系统导航栏
  17. "navigationBarTitleText": "城市智慧停车"
  18. }
  19. },
  20. {
  21. "path": "pages/parking/parking",
  22. "style": {
  23. // "navigationStyle":"custom",// 隐藏系统导航栏
  24. "navigationBarTitleText": "车辆入场"
  25. }
  26. },
  27. {
  28. "path": "pages/getout/getout",
  29. "style": {
  30. // "navigationStyle":"custom",// 隐藏系统导航栏
  31. "navigationBarTitleText": "车辆出场"
  32. }
  33. },
  34. {
  35. "path": "pages/getout/getoutpage/getoutpage",
  36. "style": {
  37. // "navigationStyle":"custom",// 隐藏系统导航栏
  38. "navigationBarTitleText": "车辆出场"
  39. }
  40. },
  41. {
  42. "path": "pages/getcarno/getcarno",
  43. "style": {
  44. // "navigationStyle":"custom",// 隐藏系统导航栏
  45. "navigationBarTitleText": "拍照取证"
  46. }
  47. }
  48. ],
  49. "globalStyle": {
  50. "navigationBarTextStyle": "black",
  51. "navigationBarTitleText": "uView",
  52. "navigationBarBackgroundColor": "#F8F8F8",
  53. "backgroundColor": "#F8F8F8"
  54. }
  55. // "tabBar": {
  56. // "color": "#909399",
  57. // "selectedColor": "#303133",
  58. // "borderStyle": "black",
  59. // "backgroundColor": "#ffffff",
  60. // "list": [{
  61. // "pagePath": "pages/index/index",
  62. // "iconPath": "static/index.png",
  63. // "selectedIconPath": "static/index-selected.png",
  64. // "text": "首页"
  65. // }, {
  66. // "pagePath": "pages/center/index",
  67. // "iconPath": "static/center.png",
  68. // "selectedIconPath": "static/center-selected.png",
  69. // "text": "我"
  70. // }]
  71. // }
  72. }