s-share-modal.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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/images/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/images/share_wx.png')" mode="" />
  17. <text class="share-title">微信好友</text>
  18. </button>
  19. <!-- 操作 ②:生成海报图片 -->
  20. <button v-if="shareConfig.methods.includes('poster')"
  21. class="share-item share-btn ss-flex-col ss-col-center" @tap="onShareByPoster">
  22. <image class="share-img" :src="sheep.$url.static('/static/images/share_poster.png')" mode="" />
  23. <text class="share-title">生成海报</text>
  24. </button>
  25. <!-- 操作 ③:生成链接 -->
  26. <!-- <button v-if="shareConfig.methods.includes('link')"
  27. class="share-item share-btn ss-flex-col ss-col-center" @tap="onShareByCopyLink">
  28. <image class="share-img" :src="sheep.$url.static('/static/images/share_link.png')"
  29. mode="" />
  30. <text class="share-title">复制链接</text>
  31. </button> -->
  32. </view>
  33. <view class="share-foot ss-flex ss-row-center ss-col-center" @tap="closeShareModal">
  34. 取消
  35. </view>
  36. </view>
  37. </su-popup>
  38. <!-- 分享海报,对应操作 ② -->
  39. <canvas-poster ref="SharePosterRef" :show="state.showPosterModal" :shareInfo="ShareInfo"
  40. @close="state.showPosterModal = false" />
  41. </view>
  42. </template>
  43. <script setup>
  44. /**
  45. * 分享弹窗
  46. */
  47. import {
  48. ref,
  49. unref,
  50. reactive,
  51. computed,
  52. } from 'vue';
  53. import { onLoad } from '@dcloudio/uni-app';
  54. import sheep from '@/sheep';
  55. import canvasPoster from './canvas-poster/index.vue';
  56. import {
  57. closeShareModal,
  58. showAuthModal
  59. } from '@/sheep/hooks/useModal';
  60. import ShareApi from '@/sheep/api/distri/share';
  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. let ShareInfo = computed(() =>{
  75. return {
  76. ...props.shareInfo
  77. }
  78. });
  79. const onShareByPoster = () => {
  80. const shareId = computed(() => sheep.$store('modal').shareInfo.spuId);
  81. closeShareModal();
  82. if (!sheep.$store('user').isLogin) {
  83. showAuthModal();
  84. return;
  85. }
  86. if (shareId.value) {
  87. ShareApi.getLinkId(3, shareId.value).then((res) => {
  88. if (res.code !== 0) {
  89. return;
  90. }
  91. ShareInfo.value.link = ShareInfo.value.link.replace('0', res.data.linkId);
  92. ShareInfo.value.query = ShareInfo.value.query.replace('0', res.data.linkId);
  93. });
  94. }
  95. unref(SharePosterRef).getPoster();
  96. state.showPosterModal = true;
  97. };
  98. // 操作 ①:直接转发分享
  99. const onShareByForward = () => {
  100. closeShareModal();
  101. // #ifdef H5
  102. if (['WechatOfficialAccount', 'H5'].includes(sheep.$platform.name)) {
  103. state.showShareGuide = true;
  104. return;
  105. }
  106. // #endif
  107. // #ifdef APP-PLUS
  108. uni.share({
  109. provider: 'weixin',
  110. scene: 'WXSceneSession',
  111. type: 0,
  112. href: props.shareInfo.link,
  113. title: props.shareInfo.title,
  114. summary: props.shareInfo.desc,
  115. imageUrl: props.shareInfo.image,
  116. success: (res) => {
  117. console.log('success:' + JSON.stringify(res));
  118. },
  119. fail: (err) => {
  120. console.log('fail:' + JSON.stringify(err));
  121. },
  122. });
  123. // #endif
  124. };
  125. // 操作 ③:复制链接分享
  126. const onShareByCopyLink = () => {
  127. closeShareModal();
  128. if (!sheep.$store('user').isLogin) {
  129. showAuthModal();
  130. return;
  131. }
  132. sheep.$helper.copyText(props.shareInfo.link);
  133. // closeShareModal();
  134. };
  135. function onCloseGuide() {
  136. state.showShareGuide = false;
  137. }
  138. </script>
  139. <style lang="scss" scoped>
  140. .guide-image {
  141. right: 30rpx;
  142. top: 0;
  143. position: fixed;
  144. width: 580rpx;
  145. height: 430rpx;
  146. z-index: 10080;
  147. }
  148. // 分享tool
  149. .share-box {
  150. background: $white;
  151. width: 750rpx;
  152. border-radius: 30rpx 30rpx 0 0;
  153. padding-top: 30rpx;
  154. .share-foot {
  155. font-size: 24rpx;
  156. color: $gray-b;
  157. height: 80rpx;
  158. border-top: 1rpx solid $gray-e;
  159. }
  160. .share-list-box {
  161. .share-btn {
  162. background: none;
  163. border: none;
  164. line-height: 1;
  165. padding: 0;
  166. &::after {
  167. border: none;
  168. }
  169. }
  170. .share-item {
  171. flex: 1;
  172. padding-bottom: 20rpx;
  173. .share-img {
  174. width: 70rpx;
  175. height: 70rpx;
  176. background: $gray-f;
  177. border-radius: 50%;
  178. margin-bottom: 20rpx;
  179. }
  180. .share-title {
  181. font-size: 24rpx;
  182. color: $dark-6;
  183. }
  184. }
  185. }
  186. }
  187. </style>