pages.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. "globalStyle": {
  57. "navigationBarTextStyle": "black",
  58. "navigationBarTitleText": "uView",
  59. "navigationBarBackgroundColor": "#F8F8F8",
  60. "backgroundColor": "#F8F8F8"
  61. }
  62. // "tabBar": {
  63. // "color": "#909399",
  64. // "selectedColor": "#303133",
  65. // "borderStyle": "black",
  66. // "backgroundColor": "#ffffff",
  67. // "list": [{
  68. // "pagePath": "pages/index/index",
  69. // "iconPath": "static/index.png",
  70. // "selectedIconPath": "static/index-selected.png",
  71. // "text": "首页"
  72. // }, {
  73. // "pagePath": "pages/center/index",
  74. // "iconPath": "static/center.png",
  75. // "selectedIconPath": "static/center-selected.png",
  76. // "text": "我"
  77. // }]
  78. // }
  79. }