tabbarconfig.js 812 B

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