index.js 300 B

1234567891011121314151617
  1. Component({
  2. properties: {
  3. list: Array,
  4. callback: Function
  5. },
  6. methods: {
  7. toDetail(e) {
  8. const {
  9. id
  10. } = e.currentTarget.dataset;
  11. this.triggerEvent('callback', id)
  12. wx.navigateTo({
  13. url: '/pages/index/message/detail?id=' + id,
  14. })
  15. }
  16. }
  17. })