index.js 497 B

1234567891011121314151617181920212223
  1. const app = require('../../utils/util.js');
  2. Page({
  3. data: {
  4. currentIndex: 0,
  5. arr: [{
  6. title: '月合红娘',
  7. address: '吉林省长春市经开区赛德广场',
  8. remark: '请大家按照规定时间前来参与',
  9. activeTime: '2021-01-01',
  10. activeStatus: 0
  11. }]
  12. },
  13. handleChange: function (e) {
  14. this.setData({
  15. currentIndex: e.detail.current
  16. })
  17. },
  18. goActive(){
  19. wx.navigateTo({
  20. url: '/pages/activeDetail/activeDetail',
  21. })
  22. }
  23. })