tabbar.js 718 B

1234567891011121314151617181920212223242526272829303132
  1. export const tabbar = {
  2. inactiveColor:"#8a8a8a",
  3. activeColor:"#59a5f0",
  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. isDot: true,
  14. pagePath: "/pages/index/index"
  15. },
  16. {
  17. iconPath: "/static/tarbar/menjin0.png",
  18. selectedIconPath: "/static/tarbar/menjin.png",
  19. text: '门禁',
  20. midButton: true,
  21. pagePath: "/pages/device/device"
  22. },
  23. {
  24. iconPath: "/static/tarbar/my0.png",
  25. selectedIconPath: "/static/tarbar/my.png",
  26. text: '我的',
  27. pagePath: "/pages/mine/mine"
  28. },
  29. ]
  30. }
  31. // export default tabbar;