pages.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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/center/index",
  15. "style": {
  16. "navigationBarTitleText": "城市智慧停车"
  17. }
  18. },
  19. {
  20. "path": "pages/center/phoneLogin/phoneLogin",
  21. "style": {
  22. "navigationBarTitleText": "手机号登录"
  23. }
  24. },
  25. {
  26. "path": "pages/parkingLists/parkingLists",
  27. "style": {
  28. "navigationBarTitleText": "停车场"
  29. }
  30. },
  31. {
  32. "path": "pages/myCars/myCars",
  33. "style": {
  34. "navigationStyle":"custom",// 隐藏系统导航栏
  35. "navigationBarTitleText": "我的车辆"
  36. }
  37. }
  38. ],
  39. "globalStyle": {
  40. "navigationBarTextStyle": "black",
  41. "navigationBarTitleText": "uView",
  42. "navigationBarBackgroundColor": "#F8F8F8",
  43. "backgroundColor": "#F8F8F8"
  44. },
  45. "tabBar": {
  46. "color": "#909399",
  47. "selectedColor": "#303133",
  48. "borderStyle": "black",
  49. "backgroundColor": "#ffffff",
  50. "list": [{
  51. "pagePath": "pages/index/index",
  52. "iconPath": "static/index.png",
  53. "selectedIconPath": "static/index-selected.png",
  54. "text": "首页"
  55. }, {
  56. "pagePath": "pages/center/index",
  57. "iconPath": "static/center.png",
  58. "selectedIconPath": "static/center-selected.png",
  59. "text": "我"
  60. }]
  61. }
  62. }