index.vue 3.6 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. // console.log(props.shareInfo)
  86. poster.src = '';
  87. poster.shareInfo = props.shareInfo;
  88. // #ifdef APP-PLUS
  89. poster.canvasId = 'canvasId-' + new Date().getTime();
  90. // #endif
  91. const canvas = await useCanvas(poster, vm);
  92. return canvas;
  93. }
  94. defineExpose({
  95. getPoster,
  96. });
  97. </script>
  98. <style lang="scss" scoped>
  99. .popup-box {
  100. position: relative;
  101. }
  102. .poster-title {
  103. color: #999;
  104. }
  105. // 分享海报
  106. .poster-btn-box {
  107. width: 600rpx;
  108. position: absolute;
  109. left: 50%;
  110. transform: translateX(-50%);
  111. bottom: -80rpx;
  112. .cancel-btn {
  113. width: 240rpx;
  114. height: 70rpx;
  115. line-height: 70rpx;
  116. background: $white;
  117. border-radius: 35rpx;
  118. font-size: 28rpx;
  119. font-weight: 500;
  120. color: $dark-9;
  121. }
  122. .save-btn {
  123. width: 240rpx;
  124. height: 70rpx;
  125. line-height: 70rpx;
  126. border-radius: 35rpx;
  127. font-size: 28rpx;
  128. font-weight: 500;
  129. }
  130. }
  131. .poster-img {
  132. border-radius: 20rpx;
  133. }
  134. .hideCanvas {
  135. position: fixed;
  136. top: -99999rpx;
  137. left: -99999rpx;
  138. z-index: -99999;
  139. }
  140. </style>