// components/detail-clinch/detail-clinch.js Component({ options: { addGlobalClass: true }, /** * 组件的属性列表 */ properties: { info: { type: Object }, }, /** * 组件的初始数据 */ data: {}, onLoad() { console.log(this.properties.info); }, /** * 组件的方法列表 */ methods: { goRecord() { wx.navigateTo({ url: '/pages/auctionRecord/auctionRecord?id=' + JSON.stringify(this.properties.info), }) }, } })