tabBar.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // 人才图谱
  2. const map = [{
  3. "pagePath": "pages/index/index",
  4. "iconPath": "/static/images/tab_home.png",
  5. "selectedIconPath": "/static/images/tab_home_s.png",
  6. "text": "图谱"
  7. },
  8. {
  9. "pagePath": "pages/policy/search",
  10. "iconPath": "/static/images/tab_policy.png",
  11. "selectedIconPath": "/static/images/tab_policy_s.png",
  12. "text": "政策"
  13. },
  14. {
  15. "pagePath": "pages/user/user",
  16. "iconPath": "/static/images/tab_user.png",
  17. "selectedIconPath": "/static/images/tab_user_s.png",
  18. "text": "我的"
  19. }
  20. ]
  21. // 人才政策计算器
  22. const policy = [{
  23. "pagePath": "pages/policy/index",
  24. "iconPath": "/static/images/tab_cal.png",
  25. "selectedIconPath": "/static/images/tab_cal_s.png",
  26. "text": "计算器"
  27. },
  28. {
  29. "pagePath": "pages/policy/search",
  30. "iconPath": "/static/images/tab_policy.png",
  31. "selectedIconPath": "/static/images/tab_policy_s.png",
  32. "text": "政策"
  33. }
  34. ]
  35. export default {
  36. map,
  37. policy
  38. }