// pages/message/index.js Component({ options: { addGlobalClass: true, multipleSlots: true }, properties: { dataList: { // 必选,通知本组件收起 type: Array, value: null, } }, methods: { lookItem: function (e) { var item = this.data.dataList[e.currentTarget.dataset.index] wx.navigateTo({ url: '/pages/mall/order-info/index?id=' + item.id }) } } })