list.js 741 B

1234567891011121314151617181920212223242526272829303132
  1. import store from '../../store'
  2. export function navList() {
  3. return [{
  4. label: "tabBar.首页",
  5. url: "/pages/index/index",
  6. icon: "/static/tabBar/home.png",
  7. activeIcon: "/static/tabBar/home-index.png",
  8. num: 0
  9. },
  10. {
  11. label: "tabBar.订单",
  12. url: "/pages/order/index",
  13. icon: "/static/tabBar/order.png",
  14. activeIcon: "/static/tabBar/order-index.png",
  15. num: 0
  16. },
  17. {
  18. label: "tabBar.捡漏",
  19. url: "/pages/leaks/index",
  20. icon: "/static/tabBar/leaks.png",
  21. activeIcon: "/static/tabBar/leaks-index.png",
  22. num: store.state.user.orderNumber
  23. },
  24. {
  25. label: "tabBar.我的",
  26. url: "/pages/user/user",
  27. icon: "/static/tabBar/user.png",
  28. activeIcon: "/static/tabBar/user-index.png",
  29. num: 0
  30. },
  31. ];
  32. }