deguodaigou/components/classify/list/index.js

14 lines
278 B
JavaScript
Raw Normal View History

2019-12-13 07:39:55 +00:00
Component({
2019-12-19 03:10:21 +00:00
properties: {
2019-12-19 09:22:23 +00:00
list:Array
2019-12-19 03:10:21 +00:00
},
2019-12-16 11:56:41 +00:00
data: {},
2019-12-13 07:39:55 +00:00
methods: {
2019-12-19 09:22:23 +00:00
todetail(a) {
console.log(a)
2019-12-16 11:56:41 +00:00
wx.navigateTo({
2019-12-19 09:22:23 +00:00
url: "/pages/product/product?shopid=" + a.currentTarget.dataset.id
2019-12-16 11:56:41 +00:00
})
}
2019-12-13 07:39:55 +00:00
}
2019-12-16 11:56:41 +00:00
})