index.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <template>
  2. <diyC ref="diy" v-if="isDiy"></diyC>
  3. </template>
  4. <script>
  5. import diy from './diy'
  6. import diyC from './diy/index_mall.vue'
  7. import {
  8. getShare
  9. } from "@/api/public.js";
  10. export default {
  11. data() {
  12. return {
  13. isDiy: uni.getStorageSync('is_diy'),
  14. shareInfo: {}
  15. }
  16. },
  17. components: {
  18. diy,
  19. diyC
  20. },
  21. onShow() {
  22. uni.$on('is_diy', (data) => {
  23. this.isDiy = data
  24. })
  25. this.setOpenShare();
  26. },
  27. onHide() {
  28. // this.isDiy = -1
  29. },
  30. methods: {
  31. // 微信分享;
  32. setOpenShare: function() {
  33. let that = this;
  34. // getShare().then((res) => {
  35. // let data = res.data;
  36. // this.shareInfo = data;
  37. // // #ifdef H5
  38. // let url = location.href;
  39. // if (this.$store.state.app.uid) {
  40. // url =
  41. // url.indexOf("?") === -1 ?
  42. // url + "?spread=" + this.$store.state.app.uid :
  43. // url + "&spread=" + this.$store.state.app.uid;
  44. // }
  45. // if (that.$wechat.isWeixin()) {
  46. // let configAppMessage = {
  47. // desc: data.synopsis,
  48. // title: data.title,
  49. // link: url,
  50. // imgUrl: data.img,
  51. // };
  52. // that.$wechat.wechatEvevt(
  53. // ["updateAppMessageShareData", "updateTimelineShareData"],
  54. // configAppMessage
  55. // );
  56. // }
  57. // // #endif
  58. // });
  59. },
  60. },
  61. // onReachBottom: function() {
  62. // if (this.isDiy) {
  63. // this.$refs.diy.onsollBotton()
  64. // }
  65. // },
  66. // #ifdef MP
  67. //发送给朋友
  68. onShareAppMessage(res) {
  69. // 此处的distSource为分享者的部分信息,需要传递给其他人
  70. let that = this;
  71. return {
  72. title: this.shareInfo.title,
  73. path: "/pages/index/index",
  74. imageUrl: this.shareInfo.img,
  75. };
  76. },
  77. //分享到朋友圈
  78. onShareTimeline() {
  79. return {
  80. title: this.shareInfo.title,
  81. imageUrl: this.shareInfo.img,
  82. };
  83. },
  84. // #endif
  85. }
  86. </script>
  87. <style>
  88. </style>