tabbarconfig.js 790 B

123456789101112131415161718192021222324252627282930
  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. midButton: true,
  27. inactiveColor: '#909399',
  28. activeColor: '#303133',
  29. midButtonSize: 90
  30. }