123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- <template>
- <su-popup :show="show" round="10" @close="onClosePoster" type="center" class="popup-box">
- <view class="ss-flex-col ss-col-center ss-row-center">
- <image
- v-if="!!painterImageUrl"
- class="poster-img"
- :src="painterImageUrl"
- :style="{
- height: poster.css.height+ 'px',
- width: poster.css.width + 'px',
- }"
- :show-menu-by-longpress="true"
- />
- </view>
- <view
- class="poster-btn-box ss-m-t-20 ss-flex ss-row-between ss-col-center"
- v-if="!!painterImageUrl"
- >
- <button class="cancel-btn ss-reset-button" @tap="onClosePoster">取消</button>
- <button class="save-btn ss-reset-button ui-BG-Main" @tap="onSavePoster">
- {{
- ['wechatOfficialAccount', 'H5'].includes(sheep.$platform.name)
- ? '长按图片保存'
- : '保存图片'
- }}
- </button>
- </view>
-
- <l-painter
- isCanvasToTempFilePath
- pathType="url"
- @success="setPainterImageUrl"
- hidden
- ref="painterRef"
- />
- </su-popup>
- </template>
- <script setup>
-
- import { reactive, ref, unref } from 'vue';
- import sheep from '@/sheep';
- import { getPosterData } from '@/sheep/components/s-share-modal/canvas-poster/poster';
- const props = defineProps({
- show: {
- type: Boolean,
- default: false,
- },
- shareInfo: {
- type: Object,
- default: () => {
- },
- },
- });
- const poster = reactive({
- css: {
-
- width: sheep.$platform.device.windowWidth * 0.9,
- height: 550,
- },
- views: [],
- });
- const emits = defineEmits(['success', 'close']);
- const onClosePoster = () => {
- emits('close');
- };
- const painterRef = ref();
- const painterImageUrl = ref();
-
- const renderPoster = async () => {
- await painterRef.value.render(unref(poster));
- };
-
- const setPainterImageUrl = (path) => {
- painterImageUrl.value = path;
- };
-
- const onSavePoster = () => {
- if (['WechatOfficialAccount', 'H5'].includes(sheep.$platform.name)) {
- sheep.$helper.toast('请长按图片保存');
- return;
- }
-
- uni.saveImageToPhotosAlbum({
- filePath: painterImageUrl.value,
- success: (res) => {
- onClosePoster();
- sheep.$helper.toast('保存成功');
- },
- fail: (err) => {
- sheep.$helper.toast('保存失败');
- console.log('图片保存失败:', err);
- },
- });
- };
-
- async function getPoster() {
- painterImageUrl.value = undefined
- poster.views = await getPosterData({
- width: poster.css.width,
- shareInfo: props.shareInfo,
- });
- await renderPoster();
- }
- defineExpose({
- getPoster,
- });
- </script>
- <style lang="scss" scoped>
- .popup-box {
- position: relative;
- }
- .poster-title {
- color: #999;
- }
- // 分享海报
- .poster-btn-box {
- width: 600rpx;
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- bottom: -80rpx;
- .cancel-btn {
- width: 240rpx;
- height: 70rpx;
- line-height: 70rpx;
- background: $white;
- border-radius: 35rpx;
- font-size: 28rpx;
- font-weight: 500;
- color: $dark-9;
- }
- .save-btn {
- width: 240rpx;
- height: 70rpx;
- line-height: 70rpx;
- border-radius: 35rpx;
- font-size: 28rpx;
- font-weight: 500;
- }
- }
- .poster-img {
- border-radius: 20rpx;
- }
- </style>
|