Files
ClassContent/项目合集/校园失物招领/min-tpl/component/item/item.js
2024-09-27 02:06:13 +08:00

39 lines
606 B
JavaScript

// 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}`
})
}
}
})