123456789101112131415161718192021 |
- Component({
- properties: {
- list: {
- type: Array
- },
- callback: {
- type: Function
- }
- },
- methods: {
- toDetail(e) {
- const {
- id
- } = e.currentTarget.dataset;
- this.triggerEvent('callback', id)
- wx.navigateTo({
- url: '/pages/index/message/detail?id=' + id,
- })
- }
- }
- })
|