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. inject
  55. } from 'vue';
  56. import sheep from '@/sheep';
  57. import canvasPoster from './canvas-poster/index.vue';
  58. import {
  59. closeShareModal,
  60. showAuthModal
  61. } from '@/sheep/hooks/useModal';
  62. const show = computed(() => sheep.$store('modal').share);
  63. const shareConfig = computed(() => sheep.$store('app').platform.share);
  64. const SharePosterRef = ref('');
  65. const props = defineProps({
  66. shareInfo: {
  67. type: Object,
  68. default () {},
  69. },
  70. });
  71. const state = reactive({
  72. showShareGuide: false, // H5 的指引
  73. showPosterModal: false, // 海报弹窗
  74. });
  75. // 操作 ②:生成海报分享
  76. const onShareByPoster = () => {
  77. closeShareModal();
  78. if (!sheep.$store('user').isLogin) {
  79. showAuthModal();
  80. return;
  81. }
  82. unref(SharePosterRef).getPoster();
  83. state.showPosterModal = true;
  84. };
  85. // 操作 ①:直接转发分享
  86. const onShareByForward = () => {
  87. closeShareModal();
  88. // #ifdef H5
  89. if (['WechatOfficialAccount', 'H5'].includes(sheep.$platform.name)) {
  90. state.showShareGuide = true;
  91. return;
  92. }
  93. // #endif
  94. // #ifdef APP-PLUS
  95. uni.share({
  96. provider: 'weixin',
  97. scene: 'WXSceneSession',
  98. type: 0,
  99. href: props.shareInfo.link,
  100. title: props.shareInfo.title,
  101. summary: props.shareInfo.desc,
  102. imageUrl: props.shareInfo.image,
  103. success: (res) => {
  104. console.log('success:' + JSON.stringify(res));
  105. },
  106. fail: (err) => {
  107. console.log('fail:' + JSON.stringify(err));
  108. },
  109. });
  110. // #endif
  111. };
  112. // 操作 ③:复制链接分享
  113. const onShareByCopyLink = () => {
  114. // sheep.$helper.copyText(props.shareInfo.link);
  115. sheep.$helper.copyText('https://zxgz.newfeifan.cn/');
  116. closeShareModal();
  117. };
  118. function onCloseGuide() {
  119. state.showShareGuide = false;
  120. }
  121. </script>
  122. <style lang="scss" scoped>
  123. .guide-image {
  124. right: 30rpx;
  125. top: 0;
  126. position: fixed;
  127. width: 580rpx;
  128. height: 430rpx;
  129. z-index: 10080;
  130. }
  131. // 分享tool
  132. .share-box {
  133. background: $white;
  134. width: 750rpx;
  135. border-radius: 30rpx 30rpx 0 0;
  136. padding-top: 30rpx;
  137. .share-foot {
  138. font-size: 24rpx;
  139. color: $gray-b;
  140. height: 80rpx;
  141. border-top: 1rpx solid $gray-e;
  142. }
  143. .share-list-box {
  144. .share-btn {
  145. background: none;
  146. border: none;
  147. line-height: 1;
  148. padding: 0;
  149. &::after {
  150. border: none;
  151. }
  152. }
  153. .share-item {
  154. flex: 1;
  155. padding-bottom: 20rpx;
  156. .share-img {
  157. width: 70rpx;
  158. height: 70rpx;
  159. background: $gray-f;
  160. border-radius: 50%;
  161. margin-bottom: 20rpx;
  162. }
  163. .share-title {
  164. font-size: 24rpx;
  165. color: $dark-6;
  166. }
  167. }
  168. }
  169. }
  170. </style>