tabbarconfig.js 808 B

12345678910111213141516171819202122232425262728293031
  1. module.exports = {
  2. // 底部导航栏列表数据
  3. tabbarList: [{
  4. pagePath: "/pages/index/index",
  5. iconPath: "/static/icons/index-gray.png",
  6. selectedIconPath: "/static/icons/index.png",
  7. text: '首页',
  8. customIcon: false,
  9. },
  10. {
  11. pagePath: "/pages/mycode/mycode",
  12. iconPath: "/static/icons/midbutton-gray.png",
  13. selectedIconPath: "/static/icons/midbutton.png",
  14. text: '退役军人码',
  15. midButton: true,
  16. customIcon: false,
  17. },
  18. {
  19. pagePath: "/pages/mine/mine",
  20. iconPath: "/static/icons/mine-gray.png",
  21. selectedIconPath: "/static/icons/mine.png",
  22. text: '我的',
  23. customIcon: false,
  24. }
  25. ],
  26. height: '53px',
  27. midButton: true,
  28. inactiveColor: '#909399',
  29. activeColor: '#303133',
  30. midButtonSize: 80
  31. }