pages.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. "globalStyle": {
  42. "navigationBarTextStyle": "black",
  43. "navigationBarTitleText": "",
  44. "navigationBarBackgroundColor": "#F8F8F8",
  45. "backgroundColor": "#F8F8F8",
  46. "animationType":"slide-in-right",
  47. "animationDuration":200
  48. },
  49. "tabBar": {
  50. "color": "#7A7E83",
  51. "selectedColor": "#007AFF",
  52. "borderStyle": "black",
  53. "backgroundColor": "#F8F8F8",
  54. "list": [{
  55. "pagePath": "pages/Charts/mainStatistics",
  56. "iconPath": "static/img/home.png",
  57. "selectedIconPath": "static/img/homeHL.png",
  58. "text": "首页"
  59. },
  60. {
  61. "pagePath": "pages/User/merchantList",
  62. "iconPath": "static/img/merchantList.png",
  63. "selectedIconPath": "static/img/merchantListHL.png",
  64. "text": "机器销售"
  65. },
  66. {
  67. "pagePath": "pages/User/equipmentStatusList",
  68. "iconPath": "static/img/equipment.png",
  69. "selectedIconPath": "static/img/equipmentHL.png",
  70. "text": "机器状态"
  71. },
  72. {
  73. "pagePath": "pages/User/user",
  74. "iconPath": "static/img/user.png",
  75. "selectedIconPath": "static/img/userHL.png",
  76. "text": "我的"
  77. }
  78. ]
  79. }
  80. }