index.js 817 B

1234567891011121314151617181920212223242526272829303132333435
  1. export function navList(that) {
  2. return [
  3. {
  4. label: "base.d0",
  5. tel: "home",
  6. icon: "static/img/base_home_0.png",
  7. activeIcon: "static/img/base_home_1.png",
  8. },
  9. {
  10. label: "base.a3",
  11. tel: "option-list",
  12. icon: "static/img/base_qukuai_0.png",
  13. activeIcon: "static/img/base_qukuai_1.png",
  14. },
  15. {
  16. label: "exchange.a0",
  17. tel: "exchange-operation",
  18. icon: "static/img/base_link_0.png",
  19. activeIcon: "static/img/base_link_1.png",
  20. },
  21. {
  22. label: "exchange.a2",
  23. tel: "contract",
  24. icon: "static/img/base_caidan_0.png",
  25. activeIcon: "static/img/base_caidan_1.png",
  26. },
  27. {
  28. label: "base.d2",
  29. tel: "mine",
  30. icon: "static/img/base_assets_0.png",
  31. activeIcon: "static/img/base_assets_1.png",
  32. },
  33. ];
  34. }