share.js 530 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // compontents/share/share.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. * 分享弹窗 没怎么用
  6. */
  7. properties: {
  8. },
  9. /**
  10. * 组件的初始数据
  11. */
  12. data: {
  13. flag: true,
  14. postId: '',
  15. },
  16. /**
  17. * 组件的方法列表
  18. */
  19. methods: {
  20. //隐藏分享框
  21. hidePopup: function () {
  22. this.setData({
  23. flag: !this.data.flag
  24. })
  25. },
  26. //展示分享框
  27. showPopup (postId) {
  28. this.setData({
  29. flag: !this.data.flag,
  30. postId
  31. })
  32. },
  33. }
  34. })