// component/item/item.js Component({ /** * 组件的属性列表 */ properties: { searchList: { type: Array, value: [] }, showDesc: { type: Boolean, value: true } }, options: { addGlobalClass: true }, /** * 组件的初始数据 */ data: { }, /** * 组件的方法列表 */ methods: { enterInfo(e) { wx.navigateTo({ url: `/pages/info/info?id=${e.currentTarget.dataset.id}` }) } } })