qrcode-share.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <template>
  2. <s-layout title="我的二维码/分享页" class="set-userinfo-wrap">
  3. <view class="ss-flex-col ss-col-center ss-row-center">
  4. <view v-if="poster.src === ''" class="poster-title ss-flex ss-row-center" :style="{
  5. height: poster.height + 'px',
  6. width: poster.width + 'px',
  7. }">
  8. 海报加载中...
  9. </view>
  10. <image v-else class="poster-img ss-m-20" :src="poster.src" :style="{
  11. height: poster.height + 'px',
  12. width: poster.width + 'px',
  13. }" :show-menu-by-longpress="true" />
  14. <canvas class="hideCanvas" :canvas-id="poster.canvasId" :id="poster.canvasId" :style="{
  15. height: poster.height + 'px',
  16. width: poster.width + 'px',
  17. }" />
  18. </view>
  19. <view class="modal-footer ss-flex ss-p-x-20">
  20. <button class="confirm-btn" @tap="onSavePoster">{{
  21. ['wechatOfficialAccount', 'H5'].includes(sheep.$platform.name)
  22. ? '长按图片保存'
  23. : '保存图片'
  24. }}</button>
  25. <button class="confirm-btn" @tap="showShareModal">分享</button>
  26. </view>
  27. </s-layout>
  28. </template>
  29. <script setup>
  30. import {
  31. computed,
  32. reactive,
  33. onBeforeMount,
  34. getCurrentInstance
  35. } from 'vue';
  36. import sheep from '@/sheep';
  37. import useCanvas from '@/sheep/components/s-share-modal/canvas-poster/useCanvas';
  38. import {
  39. showAuthModal,
  40. showShareModal
  41. } from '@/sheep/hooks/useModal';
  42. const poster = reactive({
  43. canvasId: 'canvasId',
  44. width: sheep.$platform.device.windowWidth * 0.9,
  45. height: 600,
  46. src: '',
  47. });
  48. const vm = getCurrentInstance();
  49. // 使用 canvas 生成海报
  50. async function getPoster(params) {
  51. poster.src = '';
  52. poster.shareInfo = {
  53. "title": "",
  54. "desc": "",
  55. "image": "",
  56. "path": "",
  57. "link": "https://zxgz.newfeifan.cn/",
  58. // "query": "spm=undefined.1.0.1.1",
  59. "poster": {
  60. "type": "user"
  61. }
  62. };
  63. // #ifdef APP-PLUS
  64. poster.canvasId = 'canvasId-' + new Date().getTime();
  65. // #endif
  66. const canvas = await useCanvas(poster, vm);
  67. return canvas;
  68. }
  69. // 保存海报图片
  70. const onSavePoster = () => {
  71. if (['WechatOfficialAccount', 'H5'].includes(sheep.$platform.name)) {
  72. sheep.$helper.toast('请长按图片保存');
  73. return;
  74. }
  75. uni.saveImageToPhotosAlbum({
  76. filePath: poster.src,
  77. success: (res) => {
  78. onClosePoster();
  79. sheep.$helper.toast('保存成功');
  80. },
  81. fail: (err) => {
  82. sheep.$helper.toast('保存失败');
  83. console.log('图片保存失败:', err);
  84. },
  85. });
  86. };
  87. onBeforeMount(() => {
  88. getPoster();
  89. });
  90. </script>
  91. <style lang="scss" scoped>
  92. .confirm-btn {
  93. width: 710rpx;
  94. margin-left: 20rpx;
  95. height: 80rpx;
  96. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  97. border-radius: 40rpx;
  98. color: #fff;
  99. }
  100. .confirm-btn:first-child{
  101. margin-left: 0;
  102. }
  103. .hideCanvas {
  104. position: fixed;
  105. top: -99999rpx;
  106. left: -99999rpx;
  107. z-index: -99999;
  108. }
  109. </style>