index.js 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Component({
  2. data: {
  3. selected: 0,
  4. show: true,
  5. color: "#7B8193 ",
  6. selectedColor: "#0E100F ",
  7. list: [
  8. {
  9. "pagePath": "/pages/index/position",
  10. "text": "求职",
  11. "iconPath": "/static/img/position.png",
  12. "selectedIconPath": "/static/img/position-fill.png"
  13. },
  14. {
  15. "pagePath": "/pages/index/communicate",
  16. "text": "沟通",
  17. "iconPath": "/static/img/message.png",
  18. "selectedIconPath": "/static/img/message-fill.png"
  19. },
  20. {
  21. "pagePath": "/pages/index/welfare",
  22. "text": '',
  23. "iconPath": "/static/img/welfare.png",
  24. "selectedIconPath": "/static/img/welfare.png"
  25. },
  26. {
  27. "pagePath": "/pages/index/jobFair",
  28. "text": "招聘会",
  29. "iconPath": "/static/img/jobFair.png",
  30. "selectedIconPath": "/static/img/jobFair-fill.png"
  31. },
  32. {
  33. "pagePath": "/pages/index/my",
  34. "text": "我的",
  35. "iconPath": "/static/img/my.png",
  36. "selectedIconPath": "/static/img/my-fill.png"
  37. }
  38. ]
  39. },
  40. lifetimes: {
  41. },
  42. methods: {
  43. switchTab(e) {
  44. const data = e.currentTarget.dataset
  45. const url = data.path
  46. wx.switchTab({
  47. url
  48. })
  49. this.setData({
  50. selected: data.index
  51. })
  52. }
  53. }
  54. })