pages.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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/modifypwd/modifypwd",
  22. "style": {
  23. // "navigationStyle":"custom",// 隐藏系统导航栏
  24. "navigationBarTitleText": "密码修改"
  25. }
  26. },
  27. {
  28. "path": "pages/parking/parking",
  29. "style": {
  30. // "navigationStyle":"custom",// 隐藏系统导航栏
  31. "navigationBarTitleText": "车辆入场"
  32. }
  33. },
  34. {
  35. "path": "pages/getout/getout",
  36. "style": {
  37. "navigationStyle":"custom",// 隐藏系统导航栏
  38. "navigationBarTitleText": "车辆出场"
  39. }
  40. },
  41. {
  42. "path": "pages/getout/getoutpage/getoutpage",
  43. "style": {
  44. // "navigationStyle":"custom",// 隐藏系统导航栏
  45. "navigationBarTitleText": "车辆出场"
  46. }
  47. },
  48. {
  49. "path": "pages/getcarno/getcarno",
  50. "style": {
  51. // "navigationStyle":"custom",// 隐藏系统导航栏
  52. "navigationBarTitleText": "拍照取证"
  53. }
  54. },
  55. {
  56. "path": "pages/attence/attence",
  57. "style": {
  58. "navigationStyle":"custom",// 隐藏系统导航栏
  59. "navigationBarTitleText": "考勤"
  60. }
  61. }
  62. ],
  63. "globalStyle": {
  64. "navigationBarTextStyle": "black",
  65. "navigationBarTitleText": "uView",
  66. "navigationBarBackgroundColor": "#F8F8F8",
  67. "backgroundColor": "#F8F8F8"
  68. }
  69. // "tabBar": {
  70. // "color": "#909399",
  71. // "selectedColor": "#303133",
  72. // "borderStyle": "black",
  73. // "backgroundColor": "#ffffff",
  74. // "list": [{
  75. // "pagePath": "pages/index/index",
  76. // "iconPath": "static/index.png",
  77. // "selectedIconPath": "static/index-selected.png",
  78. // "text": "首页"
  79. // }, {
  80. // "pagePath": "pages/center/index",
  81. // "iconPath": "static/center.png",
  82. // "selectedIconPath": "static/center-selected.png",
  83. // "text": "我"
  84. // }]
  85. // }
  86. }