pages.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. "navigationBarTitleText": "登录",
  17. "navigationStyle":"custom"
  18. }
  19. },
  20. {
  21. "path": "pages/equipmentList/equipmentList",
  22. "style": {
  23. "navigationStyle":"custom",
  24. "navigationBarTitleText": "设备列表"
  25. }
  26. },
  27. {
  28. "path": "pages/clockIn/clockIn",
  29. "style": {
  30. "navigationStyle":"custom",
  31. "navigationBarTitleText": "打卡"
  32. }
  33. },
  34. {
  35. "path": "pages/ownersQuery/ownersQuery",
  36. "style": {
  37. "navigationStyle":"custom",// 隐藏系统导航栏
  38. "navigationBarTextStyle": "white",
  39. "navigationBarTitleText": "车主查询"
  40. }
  41. },
  42. {
  43. "path": "pages/ownersQuery/queryList/queryList",
  44. "style": {
  45. "navigationStyle":"custom",// 隐藏系统导航栏
  46. "navigationBarTextStyle": "white",
  47. "navigationBarTitleText": "车主查询"
  48. }
  49. },
  50. {
  51. "path": "pages/center/index",
  52. "style": {
  53. "navigationStyle":"custom",// 隐藏系统导航栏
  54. "navigationBarTextStyle": "white",
  55. "navigationBarTitleText": "城市智慧停车"
  56. }
  57. },
  58. {
  59. "path": "pages/report/report",
  60. "style": {
  61. "navigationStyle":"custom",// 隐藏系统导航栏
  62. "navigationBarTitleText": "问题上报"
  63. }
  64. },
  65. {
  66. "path": "pages/center/resetPass/resetPass",
  67. "style": {
  68. "navigationBarTitleText": "重置密码"
  69. }
  70. }
  71. ],
  72. "globalStyle": {
  73. "navigationBarTextStyle": "black",
  74. "navigationBarTitleText": "uView",
  75. "navigationBarBackgroundColor": "#F8F8F8",
  76. "backgroundColor": "#F8F8F8",
  77. "backgroundColorTop":"#FFFFFF"
  78. },
  79. "tabBar": {
  80. "color": "#909399",
  81. "selectedColor": "#303133",
  82. "borderStyle": "black",
  83. "backgroundColor": "#ffffff",
  84. "list": [{
  85. "pagePath": "pages/index/index",
  86. "iconPath": "static/index.png",
  87. "selectedIconPath": "static/index-selected.png",
  88. "text": "首页"
  89. }, {
  90. "pagePath": "pages/ownersQuery/ownersQuery",
  91. "iconPath": "static/car_h.png",
  92. "selectedIconPath": "static/car.png",
  93. "text": "车主查询"
  94. }, {
  95. "pagePath": "pages/center/index",
  96. "iconPath": "static/center.png",
  97. "selectedIconPath": "static/center-selected.png",
  98. "text": "我"
  99. }]
  100. }
  101. }