index.js 1023 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. Component({
  2. data: {
  3. selected: 0,
  4. show: true,
  5. color: "#7A7E83",
  6. selectedColor: "#00B760",
  7. list: [
  8. {
  9. "pagePath": "/pages/index/resume",
  10. "text": "简历",
  11. "iconPath": "/static/img/resume.png",
  12. "selectedIconPath": "/static/img/resume-fill.png"
  13. },
  14. {
  15. "pagePath": "/pages/index/position",
  16. "text": "职位",
  17. "iconPath": "/static/img/position.png",
  18. "selectedIconPath": "/static/img/position-fill.png"
  19. },
  20. {
  21. "pagePath": "/pages/index/communicate",
  22. "text": "沟通",
  23. "iconPath": "/static/img/message.png",
  24. "selectedIconPath": "/static/img/message-fill.png"
  25. },
  26. {
  27. "pagePath": "/pages/index/my",
  28. "text": "企业",
  29. "iconPath": "/static/img/company.png",
  30. "selectedIconPath": "/static/img/company-fill.png"
  31. }
  32. ]
  33. },
  34. lifetimes: {
  35. },
  36. methods: {
  37. switchTab(e) {
  38. const data = e.currentTarget.dataset
  39. wx.switchTab({
  40. url: data.path
  41. })
  42. this.setData({
  43. selected: data.index
  44. })
  45. }
  46. }
  47. })