index.vue 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <template>
  2. <view>
  3. <diyC ref="diy" v-if="isDiy" @pullResh="pullResh"></diyC>
  4. </view>
  5. </template>
  6. <script>
  7. import diyC from './diy/index_mall.vue'
  8. export default {
  9. data() {
  10. return {
  11. isDiy: uni.getStorageSync('is_diy'),
  12. shareInfo: {}
  13. }
  14. },
  15. components: {
  16. diyC
  17. },
  18. onShow() {
  19. uni.$on('is_diy', (data) => {
  20. this.isDiy = data
  21. })
  22. },
  23. onHide() {
  24. // this.isDiy = -1
  25. },
  26. onPullDownRefresh() {
  27. this.$refs.diy.pullResh();
  28. // uni.stopPullDownRefresh()
  29. },
  30. onLoad(){
  31. // wx.showShareMenu({
  32. // withShareTicket:true,
  33. // //设置下方的Menus菜单,才能够让发送给朋友与分享到朋友圈两个按钮可以点击
  34. // menus:["shareAppMessage","shareTimeline"]
  35. // })
  36. },
  37. methods: {
  38. },
  39. // onReachBottom: function() {
  40. // if (this.isDiy) {
  41. // this.$refs.diy.onsollBotton()
  42. // }
  43. // },
  44. //#ifdef MP
  45. //发送给朋友
  46. onShareAppMessage: function (option) {
  47. console.log(option)
  48. let groupon = option.target.dataset.groupon;
  49. let userInfo = this.$Cache.get("USER_INFO", true)
  50. let that = this;
  51. return {
  52. title: groupon.mainTitle,
  53. imageUrl: groupon.shareImage || groupon.slideshow[0],
  54. path: `/pages/groupbuying_details/index?id=${groupon.id}&selfTakeId=${that.selfTakeId}&organizerUserId=${that.organizerUserId}&inviteUserId=${userInfo.userId}`,
  55. success(res) {
  56. uni.showToast({
  57. title: '分享成功'
  58. })
  59. },
  60. fail(res) {
  61. uni.showToast({
  62. title: '分享失败',
  63. icon: 'none'
  64. })
  65. }
  66. };
  67. },
  68. //分享到朋友圈
  69. // onShareTimeline(option) {
  70. // console.log(option)
  71. // let groupon = option.target.dataset.groupon;
  72. // let userInfo = this.$Cache.get("USER_INFO", true)
  73. // let that = this;
  74. // return {
  75. // title: groupon.shareImage || groupon.slideshow[0],
  76. // imageUrl: groupon.slideshow[0],
  77. // path: `/pages/groupbuying_details/index?id=${groupon.id}&selfTakeId=${that.selfTakeId}&organizerUserId=${that.organizerUserId}&inviteUserId=${userInfo.userId}`,
  78. // success(res) {
  79. // uni.showToast({
  80. // title: '分享成功'
  81. // })
  82. // },
  83. // fail(res) {
  84. // uni.showToast({
  85. // title: '分享失败',
  86. // icon: 'none'
  87. // })
  88. // }
  89. // };
  90. // },
  91. //#endif
  92. }
  93. </script>
  94. <style></style>