tabbar.js 654 B

1234567891011121314151617181920212223242526272829
  1. export const tabbar = {
  2. inactiveColor: "#8a8a8a",
  3. activeColor: "#5064eb",
  4. bgColor: "#ffffff",
  5. midButton: true,
  6. iconSize: 44,
  7. MinButtonSize: 70,
  8. borderTop: true,
  9. list: [{
  10. iconPath: "/static/tarbar/index0.png",
  11. selectedIconPath: "/static/tarbar/index.png",
  12. text: '园区',
  13. pagePath: "/pages/index/index"
  14. },
  15. {
  16. iconPath: "/static/tarbar/menjin0.png",
  17. selectedIconPath: "/static/tarbar/menjin.png",
  18. text: '门禁',
  19. midButton: true,
  20. pagePath: "/pages/device/device"
  21. },
  22. {
  23. iconPath: "/static/tarbar/my0.png",
  24. selectedIconPath: "/static/tarbar/my.png",
  25. text: '我的',
  26. pagePath: "/pages/mine/mine"
  27. },
  28. ]
  29. }