pages.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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/column",
  12. "style" : {
  13. "navigationBarTitleText":"统计图表"
  14. // "disableScroll": true,
  15. // "enablePullDownRefresh": true
  16. }
  17. },
  18. {
  19. "path" : "pages/User/user",
  20. "style" : {
  21. "navigationBarTitleText":"我的"
  22. }
  23. }
  24. ],
  25. "globalStyle": {
  26. "navigationBarTextStyle": "black",
  27. "navigationBarTitleText": "",
  28. "navigationBarBackgroundColor": "#F8F8F8",
  29. "backgroundColor": "#F8F8F8",
  30. "animationType":"slide-in-right",
  31. "animationDuration":200
  32. },
  33. "tabBar": {
  34. "color": "#7A7E83",
  35. "selectedColor": "#007AFF",
  36. "borderStyle": "black",
  37. "backgroundColor": "#F8F8F8",
  38. "list": [{
  39. "pagePath": "pages/Charts/column",
  40. "iconPath": "static/img/home.png",
  41. "selectedIconPath": "static/img/homeHL.png",
  42. "text": "首页"
  43. },
  44. {
  45. "pagePath": "pages/User/user",
  46. "iconPath": "static/img/user.png",
  47. "selectedIconPath": "static/img/userHL.png",
  48. "text": "我的"
  49. }
  50. ]
  51. }
  52. }