2019-12-13 03:43:02 +00:00
|
|
|
Component({
|
2019-12-18 10:10:15 +00:00
|
|
|
properties: {
|
|
|
|
img:String,
|
|
|
|
title:String,
|
|
|
|
id:String,
|
2019-12-19 06:29:24 +00:00
|
|
|
price:String,
|
|
|
|
shopid:String
|
2019-12-18 10:10:15 +00:00
|
|
|
},
|
2019-12-16 10:26:28 +00:00
|
|
|
data: {},
|
2019-12-13 03:43:02 +00:00
|
|
|
methods: {
|
2019-12-19 06:29:24 +00:00
|
|
|
gotodetail(e) {
|
|
|
|
console.log(e.currentTarget.dataset.id)
|
2019-12-16 10:26:28 +00:00
|
|
|
wx.navigateTo({
|
2019-12-19 06:29:24 +00:00
|
|
|
url: "/pages/product/product?shopid="+e.currentTarget.dataset.id
|
2019-12-16 10:26:28 +00:00
|
|
|
})
|
|
|
|
}
|
2019-12-13 03:43:02 +00:00
|
|
|
}
|
2019-12-16 10:26:28 +00:00
|
|
|
})
|