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