14 lines
291 B
JavaScript
14 lines
291 B
JavaScript
Component({
|
|
properties: {
|
|
list:Array
|
|
},
|
|
data: {},
|
|
methods: {
|
|
todetail(a) {
|
|
console.log(a)
|
|
wx.navigateTo({
|
|
url: "/pages/product/product?shopid=" + a.currentTarget.dataset.id
|
|
})
|
|
}
|
|
}
|
|
}) |