2019-12-13 03:43:02 +00:00
|
|
|
Component({
|
2019-12-18 10:10:15 +00:00
|
|
|
properties: {
|
|
|
|
img:String,
|
|
|
|
title:String,
|
|
|
|
id:String,
|
|
|
|
price:String
|
|
|
|
},
|
2019-12-16 10:26:28 +00:00
|
|
|
data: {},
|
2019-12-13 03:43:02 +00:00
|
|
|
methods: {
|
2019-12-16 10:26:28 +00:00
|
|
|
gotodetail() {
|
|
|
|
wx.navigateTo({
|
|
|
|
url: "/pages/product/product"
|
|
|
|
})
|
|
|
|
}
|
2019-12-13 03:43:02 +00:00
|
|
|
}
|
2019-12-16 10:26:28 +00:00
|
|
|
})
|