index.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <!-- 海报弹窗 -->
  2. <template>
  3. <su-popup :show="show" round="10" @close="onClosePoster" type="center" class="popup-box">
  4. <view class="ss-flex-col ss-col-center ss-row-center">
  5. <view v-if="poster.src === ''" class="poster-title ss-flex ss-row-center" :style="{
  6. height: poster.height + 'px',
  7. width: poster.width + 'px',
  8. }">
  9. 海报加载中...
  10. </view>
  11. <image v-else class="poster-img" :src="poster.src" :style="{
  12. height: poster.height + 'px',
  13. width: poster.width + 'px',
  14. }" :show-menu-by-longpress="true" />
  15. <canvas class="hideCanvas" :canvas-id="poster.canvasId" :id="poster.canvasId" :style="{
  16. height: poster.height + 'px',
  17. width: poster.width + 'px',
  18. }" />
  19. <view class="poster-btn-box ss-m-t-20 ss-flex ss-row-between ss-col-center" v-if="poster.src !== ''">
  20. <button class="cancel-btn ss-reset-button" @tap="onClosePoster">取消</button>
  21. <button class="save-btn ss-reset-button ui-BG-Main" @tap="onSavePoster">
  22. {{
  23. ['wechatOfficialAccount', 'H5'].includes(sheep.$platform.name)
  24. ? '保存图片'
  25. : '长按图片保存'
  26. }}
  27. </button>
  28. </view>
  29. </view>
  30. </su-popup>
  31. </template>
  32. <script setup>
  33. import {
  34. reactive,
  35. getCurrentInstance
  36. } from 'vue';
  37. import sheep from '@/sheep';
  38. import useCanvas from './useCanvas';
  39. import FileApi from '@/sheep/api/infra/file';
  40. const props = defineProps({
  41. show: {
  42. type: Boolean,
  43. default: false,
  44. },
  45. shareInfo: {
  46. type: Object,
  47. default () {},
  48. },
  49. });
  50. const poster = reactive({
  51. canvasId: 'canvasId',
  52. width: sheep.$platform.device.windowWidth * 0.9,
  53. height: 600,
  54. src: '',
  55. });
  56. const emits = defineEmits(['success', 'close']);
  57. const vm = getCurrentInstance();
  58. const onClosePoster = () => {
  59. emits('close');
  60. };
  61. // 保存海报图片
  62. const onSavePoster = () => {
  63. if (['WechatOfficialAccount', 'H5'].includes(sheep.$platform.name)) {
  64. sheep.$helper.toast('请长按图片保存');
  65. return;
  66. }
  67. uni.saveImageToPhotosAlbum({
  68. filePath: poster.src,
  69. success: (res) => {
  70. onClosePoster();
  71. sheep.$helper.toast('保存成功');
  72. },
  73. fail: (err) => {
  74. sheep.$helper.toast('保存失败');
  75. console.log('图片保存失败:', err);
  76. },
  77. });
  78. };
  79. // 使用 canvas 生成海报
  80. async function getPoster(params) {
  81. const data = FileApi.getFileIO("https://mall-ffkj.oss-cn-guangzhou.aliyuncs.com/1113667b212fe1ba9fb9c99c20fbcb61ff69fa2d8bc243cfdd40c3dfa06f9bb6.png")
  82. console.log(data)
  83. poster.src = '';
  84. poster.shareInfo = props.shareInfo;
  85. // #ifdef APP-PLUS
  86. poster.canvasId = 'canvasId-' + new Date().getTime();
  87. // #endif
  88. const canvas = await useCanvas(poster, vm);
  89. return canvas;
  90. }
  91. defineExpose({
  92. getPoster,
  93. });
  94. </script>
  95. <style lang="scss" scoped>
  96. .popup-box {
  97. position: relative;
  98. }
  99. .poster-title {
  100. color: #999;
  101. }
  102. // 分享海报
  103. .poster-btn-box {
  104. width: 600rpx;
  105. position: absolute;
  106. left: 50%;
  107. transform: translateX(-50%);
  108. bottom: -80rpx;
  109. .cancel-btn {
  110. width: 240rpx;
  111. height: 70rpx;
  112. line-height: 70rpx;
  113. background: $white;
  114. border-radius: 35rpx;
  115. font-size: 28rpx;
  116. font-weight: 500;
  117. color: $dark-9;
  118. }
  119. .save-btn {
  120. width: 240rpx;
  121. height: 70rpx;
  122. line-height: 70rpx;
  123. border-radius: 35rpx;
  124. font-size: 28rpx;
  125. font-weight: 500;
  126. }
  127. }
  128. .poster-img {
  129. border-radius: 20rpx;
  130. }
  131. .hideCanvas {
  132. position: fixed;
  133. top: -99999rpx;
  134. left: -99999rpx;
  135. z-index: -99999;
  136. }
  137. </style>