pages.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/Login/Login",
  5. "style" : {
  6. "navigationStyle": "custom",
  7. "disableScroll": true
  8. }
  9. },
  10. {
  11. "path" : "pages/Charts/mainStatistics",
  12. "style" : {
  13. "navigationBarTitleText":"统计图表"
  14. // "disableScroll": true
  15. // "enablePullDownRefresh": true
  16. }
  17. },
  18. {
  19. "path" : "pages/User/merchantList",
  20. "style" : {
  21. "navigationBarTitleText":"机器销售",
  22. // "disableScroll": true,
  23. "enablePullDownRefresh": true
  24. }
  25. },
  26. {
  27. "path" : "pages/User/equipmentStatusList",
  28. "style" : {
  29. "navigationBarTitleText":"机器状态",
  30. // "disableScroll": true,
  31. "enablePullDownRefresh": true
  32. }
  33. },
  34. {
  35. "path" : "pages/User/user",
  36. "style" : {
  37. "navigationBarTitleText":"我的"
  38. }
  39. },
  40. {
  41. "path": "pages/Charts/elseStatistics",
  42. "style": {
  43. "navigationBarTitleText": "统计图表"
  44. }
  45. }
  46. ],
  47. "globalStyle": {
  48. "navigationBarTextStyle": "black",
  49. "navigationBarTitleText": "",
  50. "navigationBarBackgroundColor": "#F8F8F8",
  51. "backgroundColor": "#F8F8F8",
  52. "animationType":"slide-in-right",
  53. "animationDuration":200
  54. },
  55. "tabBar": {
  56. "color": "#7A7E83",
  57. "selectedColor": "#007AFF",
  58. "borderStyle": "black",
  59. "backgroundColor": "#F8F8F8",
  60. "list": [{
  61. "pagePath": "pages/Charts/mainStatistics",
  62. "iconPath": "static/img/home.png",
  63. "selectedIconPath": "static/img/homeHL.png",
  64. "text": "首页"
  65. },
  66. {
  67. "pagePath": "pages/User/merchantList",
  68. "iconPath": "static/img/merchantList.png",
  69. "selectedIconPath": "static/img/merchantListHL.png",
  70. "text": "机器销售"
  71. },
  72. {
  73. "pagePath": "pages/User/equipmentStatusList",
  74. "iconPath": "static/img/equipment.png",
  75. "selectedIconPath": "static/img/equipmentHL.png",
  76. "text": "机器状态"
  77. },
  78. {
  79. "pagePath": "pages/User/user",
  80. "iconPath": "static/img/user.png",
  81. "selectedIconPath": "static/img/userHL.png",
  82. "text": "我的"
  83. }
  84. ]
  85. }
  86. }