index.js 549 B

12345678910111213141516171819202122232425262728293031
  1. Component({
  2. /**
  3. * 组件的属性列表
  4. */
  5. properties: {
  6. listData: Array
  7. },
  8. /**
  9. * 组件的初始数据
  10. */
  11. data: {},
  12. /**
  13. * 组件的方法列表
  14. */
  15. methods: {
  16. jumpGoodsDetail(e) {
  17. const { item } = e.currentTarget.dataset
  18. const page = getCurrentPages()
  19. let id = item.id
  20. if (page[page.length - 1].route === 'pages/collection/collection') {
  21. id = item.product_id
  22. }
  23. wx.navigateTo({
  24. url: '/pages/goodsDetail/goodsDetail?product_id=' + id
  25. })
  26. }
  27. }
  28. })