index.js 840 B

12345678910111213141516171819202122232425262728293031323334
  1. Page({
  2. data: {
  3. currentIndex: 0,
  4. arr: [{
  5. title: '月合红娘',
  6. address: '吉林省长春市某某大厦',
  7. remark: '请大家按照规定时间前来参与',
  8. activeTime: '2020-02-20',
  9. activeStatus: 0
  10. }, {
  11. title: '月合红娘',
  12. address: '吉林省长春市某某大厦',
  13. remark: '请大家按照规定时间前来参与',
  14. activeTime: '2020-02-20',
  15. activeStatus: 1
  16. }, {
  17. title: '月合红娘',
  18. address: '吉林省长春市某某大厦',
  19. remark: '请大家按照规定时间前来参与',
  20. activeTime: '2020-02-20',
  21. activeStatus: 2
  22. }]
  23. },
  24. handleChange: function (e) {
  25. this.setData({
  26. currentIndex: e.detail.current
  27. })
  28. },
  29. goActive(){
  30. wx.navigateTo({
  31. url: '/pages/activeDetail/activeDetail',
  32. })
  33. }
  34. })