index.vue 3.5 KB

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