pages.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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/getcarno/getcarno",
  36. "style": {
  37. // "navigationStyle":"custom",// 隐藏系统导航栏
  38. "navigationBarTitleText": "拍照取证"
  39. }
  40. }
  41. ],
  42. "globalStyle": {
  43. "navigationBarTextStyle": "black",
  44. "navigationBarTitleText": "uView",
  45. "navigationBarBackgroundColor": "#F8F8F8",
  46. "backgroundColor": "#F8F8F8"
  47. }
  48. // "tabBar": {
  49. // "color": "#909399",
  50. // "selectedColor": "#303133",
  51. // "borderStyle": "black",
  52. // "backgroundColor": "#ffffff",
  53. // "list": [{
  54. // "pagePath": "pages/index/index",
  55. // "iconPath": "static/index.png",
  56. // "selectedIconPath": "static/index-selected.png",
  57. // "text": "首页"
  58. // }, {
  59. // "pagePath": "pages/center/index",
  60. // "iconPath": "static/center.png",
  61. // "selectedIconPath": "static/center-selected.png",
  62. // "text": "我"
  63. // }]
  64. // }
  65. }