s-share-modal.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <!-- 全局分享弹框 -->
  2. <template>
  3. <view>
  4. <su-popup :show="state.showShareGuide" :showClose="false" @close="onCloseGuide" />
  5. <view v-if="state.showShareGuide" class="guide-wrap">
  6. <image class="guide-image" :src="sheep.$url.static('/static/img/shop/share/share_guide.png')" />
  7. </view>
  8. <su-popup :show="show" round="10" :showClose="false" @close="closeShareModal">
  9. <!-- 分享 tools -->
  10. <view class="share-box">
  11. <view class="share-list-box ss-flex">
  12. <!-- 操作 ①:发送给微信好友 -->
  13. <button v-if="shareConfig.methods.includes('forward')"
  14. class="share-item share-btn ss-flex-col ss-col-center" open-type="share"
  15. @tap="onShareByForward">
  16. <image class="share-img" :src="sheep.$url.static('/static/img/shop/share/share_wx.png')"
  17. mode="" />
  18. <text class="share-title">微信好友</text>
  19. </button>
  20. <!-- 操作 ②:生成海报图片 -->
  21. <!-- <button v-if="shareConfig.methods.includes('poster')"
  22. class="share-item share-btn ss-flex-col ss-col-center" @tap="onShareByPoster">
  23. <image class="share-img" :src="sheep.$url.static('/static/img/shop/share/share_poster.png')"
  24. mode="" />
  25. <text class="share-title">生成海报</text>
  26. </button> -->
  27. <!-- 操作 ③:生成链接 -->
  28. <button v-if="shareConfig.methods.includes('link')"
  29. class="share-item share-btn ss-flex-col ss-col-center" @tap="onShareByCopyLink">
  30. <image class="share-img" :src="sheep.$url.static('/static/img/shop/share/share_link.png')"
  31. mode="" />
  32. <text class="share-title">复制链接</text>
  33. </button>
  34. </view>
  35. <view class="share-foot ss-flex ss-row-center ss-col-center" @tap="closeShareModal">
  36. 取消
  37. </view>
  38. </view>
  39. </su-popup>
  40. <!-- 分享海报,对应操作 ② -->
  41. <canvas-poster ref="SharePosterRef" :show="state.showPosterModal" :shareInfo="shareInfo"
  42. @close="state.showPosterModal = false" />
  43. </view>
  44. </template>
  45. <script setup>
  46. /**
  47. * 分享弹窗
  48. */
  49. import {
  50. ref,
  51. unref,
  52. reactive,
  53. computed
  54. } from 'vue';
  55. import sheep from '@/sheep';
  56. import canvasPoster from './canvas-poster/index.vue';
  57. import {
  58. closeShareModal,
  59. showAuthModal
  60. } from '@/sheep/hooks/useModal';
  61. const show = computed(() => sheep.$store('modal').share);
  62. const shareConfig = computed(() => sheep.$store('app').platform.share);
  63. const SharePosterRef = ref('');
  64. const props = defineProps({
  65. shareInfo: {
  66. type: Object,
  67. default () {},
  68. },
  69. });
  70. const state = reactive({
  71. showShareGuide: false, // H5 的指引
  72. showPosterModal: false, // 海报弹窗
  73. });
  74. // 操作 ②:生成海报分享
  75. const onShareByPoster = () => {
  76. closeShareModal();
  77. if (!sheep.$store('user').isLogin) {
  78. showAuthModal();
  79. return;
  80. }
  81. unref(SharePosterRef).getPoster();
  82. state.showPosterModal = true;
  83. };
  84. // 操作 ①:直接转发分享
  85. const onShareByForward = () => {
  86. closeShareModal();
  87. // #ifdef H5
  88. if (['WechatOfficialAccount', 'H5'].includes(sheep.$platform.name)) {
  89. state.showShareGuide = true;
  90. return;
  91. }
  92. // #endif
  93. // #ifdef APP-PLUS
  94. uni.share({
  95. provider: 'weixin',
  96. scene: 'WXSceneSession',
  97. type: 0,
  98. href: props.shareInfo.link,
  99. title: props.shareInfo.title,
  100. summary: props.shareInfo.desc,
  101. imageUrl: props.shareInfo.image,
  102. success: (res) => {
  103. console.log('success:' + JSON.stringify(res));
  104. },
  105. fail: (err) => {
  106. console.log('fail:' + JSON.stringify(err));
  107. },
  108. });
  109. // #endif
  110. };
  111. // 操作 ③:复制链接分享
  112. const onShareByCopyLink = () => {
  113. // sheep.$helper.copyText(props.shareInfo.link);
  114. sheep.$helper.copyText('https://zxgz.newfeifan.cn/');
  115. closeShareModal();
  116. };
  117. function onCloseGuide() {
  118. state.showShareGuide = false;
  119. }
  120. </script>
  121. <style lang="scss" scoped>
  122. .guide-image {
  123. right: 30rpx;
  124. top: 0;
  125. position: fixed;
  126. width: 580rpx;
  127. height: 430rpx;
  128. z-index: 10080;
  129. }
  130. // 分享tool
  131. .share-box {
  132. background: $white;
  133. width: 750rpx;
  134. border-radius: 30rpx 30rpx 0 0;
  135. padding-top: 30rpx;
  136. .share-foot {
  137. font-size: 24rpx;
  138. color: $gray-b;
  139. height: 80rpx;
  140. border-top: 1rpx solid $gray-e;
  141. }
  142. .share-list-box {
  143. .share-btn {
  144. background: none;
  145. border: none;
  146. line-height: 1;
  147. padding: 0;
  148. &::after {
  149. border: none;
  150. }
  151. }
  152. .share-item {
  153. flex: 1;
  154. padding-bottom: 20rpx;
  155. .share-img {
  156. width: 70rpx;
  157. height: 70rpx;
  158. background: $gray-f;
  159. border-radius: 50%;
  160. margin-bottom: 20rpx;
  161. }
  162. .share-title {
  163. font-size: 24rpx;
  164. color: $dark-6;
  165. }
  166. }
  167. }
  168. }
  169. </style>