list.js 788 B

12345678910111213141516171819202122232425262728293031323334
  1. export function navList(that) {
  2. return [
  3. {
  4. label: "home.d0",
  5. tel: "index",
  6. icon: "static/tabBar/shouye.png",
  7. activeIcon: "static/tabBar/shouye-home.png",
  8. },
  9. {
  10. label: "home.d1",
  11. tel: "pledge",
  12. icon: "static/tabBar/baoya.png",
  13. activeIcon: "static/tabBar/baoya-home.png",
  14. },
  15. // {
  16. // label: "home.d2",
  17. // tel: "entertainment",
  18. // icon: "static/tabBar/huyu.png",
  19. // activeIcon: "static/tabBar/huyu-home.png",
  20. // },
  21. {
  22. label: "home.d3",
  23. tel: "information",
  24. icon: "static/tabBar/zixun.png",
  25. activeIcon: "static/tabBar/zixun-home.png",
  26. },
  27. {
  28. label: "home.d4",
  29. tel: "user",
  30. icon: "static/tabBar/my.png",
  31. activeIcon: "static/tabBar/my-home.png",
  32. },
  33. ];
  34. }