13 lines
195 B
JavaScript
Raw Normal View History

2019-12-13 15:39:55 +08:00
Component({
2019-12-19 11:10:21 +08:00
properties: {
},
2019-12-16 19:56:41 +08:00
data: {},
2019-12-13 15:39:55 +08:00
methods: {
2019-12-16 19:56:41 +08:00
todetail() {
wx.navigateTo({
url: "/pages/product/product"
})
}
2019-12-13 15:39:55 +08:00
}
2019-12-16 19:56:41 +08:00
})