index.js 537 B

123456789101112131415161718192021222324252627282930313233
  1. Component({
  2. /**
  3. * 组件的属性列表
  4. */
  5. properties: {
  6. listData: Array
  7. },
  8. /**
  9. * 组件的初始数据
  10. */
  11. data: {},
  12. /**
  13. * 组件的方法列表
  14. */
  15. methods: {
  16. handleContact(e) {
  17. const { item } = e.currentTarget.dataset
  18. wx.makePhoneCall({
  19. phoneNumber: item.shop_phone
  20. })
  21. },
  22. jumpBusinessDetail(e) {
  23. const { item } = e.currentTarget.dataset
  24. wx.navigateTo({
  25. url: '/pages/businessDetail/businessDetail?shop_id=' + item.id
  26. })
  27. }
  28. }
  29. })