index.js 675 B

12345678910111213141516171819202122232425262728
  1. module.exports = {
  2. type: 'bottomTab',
  3. async fetch() {
  4. return [
  5. {
  6. title: '首页',
  7. image: $icon('home'),
  8. route: $route('home')
  9. },
  10. {
  11. title: '分类',
  12. image: $icon('view_module'),
  13. route: $route('fl')
  14. },
  15. {
  16. title: '排行',
  17. image: $icon('format_line_spacing'),
  18. route: $route('ph')
  19. },
  20. {
  21. title: '收藏',
  22. image: $icon('my_location'),
  23. route: $route('follow')
  24. }
  25. ]
  26. }
  27. }