index.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. let o = uni.getSystemInfoSync();
  38. console.log("设备类型:" + o.deviceType + "\ndeviceBrand:" + o.deviceBrand + "\ndeviceModel:" + o.deviceModel
  39. + "\nosName:" + o.osName
  40. + "\nosVersion:" + o.osVersion
  41. + "\nhostName:" + o.hostName
  42. + "\nhostVersion:" + o.hostVersion
  43. + "\nuniPlatform:" + o.uniPlatform)
  44. },
  45. methods: {
  46. },
  47. // onReachBottom: function() {
  48. // if (this.isDiy) {
  49. // this.$refs.diy.onsollBotton()
  50. // }
  51. // },
  52. //#ifdef MP
  53. //发送给朋友
  54. onShareAppMessage: function (option) {
  55. console.log(option)
  56. let groupon = option.target.dataset.groupon;
  57. let userInfo = this.$Cache.get("USER_INFO", true)
  58. let that = this;
  59. return {
  60. title: groupon.mainTitle,
  61. imageUrl: groupon.shareImage || groupon.slideshow[0],
  62. path: `/pages/groupbuying_details/index?id=${groupon.id}&selfTakeId=${that.selfTakeId}&organizerUserId=${that.organizerUserId}&inviteUserId=${userInfo.userId}`,
  63. success(res) {
  64. uni.showToast({
  65. title: '分享成功'
  66. })
  67. },
  68. fail(res) {
  69. uni.showToast({
  70. title: '分享失败',
  71. icon: 'none'
  72. })
  73. }
  74. };
  75. },
  76. //分享到朋友圈
  77. // onShareTimeline(option) {
  78. // console.log(option)
  79. // let groupon = option.target.dataset.groupon;
  80. // let userInfo = this.$Cache.get("USER_INFO", true)
  81. // let that = this;
  82. // return {
  83. // title: groupon.shareImage || groupon.slideshow[0],
  84. // imageUrl: groupon.slideshow[0],
  85. // path: `/pages/groupbuying_details/index?id=${groupon.id}&selfTakeId=${that.selfTakeId}&organizerUserId=${that.organizerUserId}&inviteUserId=${userInfo.userId}`,
  86. // success(res) {
  87. // uni.showToast({
  88. // title: '分享成功'
  89. // })
  90. // },
  91. // fail(res) {
  92. // uni.showToast({
  93. // title: '分享失败',
  94. // icon: 'none'
  95. // })
  96. // }
  97. // };
  98. // },
  99. //#endif
  100. }
  101. </script>
  102. <style></style>