daoji_h5/agent/pages/poster/channel.vue

237 lines
4.8 KiB
Vue
Raw Normal View History

2024-03-21 05:53:51 +00:00
<template>
<view>
<view class="hideCanvasView">
<l-painter class="hideCanvas" ref="painter" useCORS />
</view>
<block v-if="src">
<image :src="src" class="code-img" @tap="previewImage"></image>
<view class="space-max-footer"></view>
<fix-bottom-button @confirm="toPreviewSave" :text="[{text: confirmText,type:'confirm'}]" bgColor="#fff"
:classType="2">
</fix-bottom-button>
</block>
</view>
</template>
<script>
import {
mapState,
mapActions
} from 'vuex';
export default {
components: {},
props: {
},
data() {
return {
options: {},
// #ifdef H5
confirmText: '长按上图保存图片',
// #endif
// #ifndef H5
confirmText: '保存图片至相册',
// #endif
src: ''
}
},
computed: mapState({
primaryColor: state => state.config.configInfo.primaryColor,
configInfo: state => state.config.configInfo,
userInfo: state => state.user.userInfo,
}),
async onLoad(options) {
this.options = options
// #ifdef H5
if (this.$jweixin.isWechat()) {
await this.$jweixin.initJssdk();
this.$jweixin.wxReady(() => {
this.$jweixin.hideOptionMenu()
})
}
// #endif
this.$util.showLoading()
await this.getConfigInfo()
this.$util.setNavigationBarColor({
bg: this.primaryColor
})
let that = this
setTimeout(() => {
that.renderToCanvas()
}, 1000)
},
methods: {
...mapActions(['getConfigInfo']),
async renderToCanvas() {
let that = this;
let {
type = 0
} = that.options
let qr_code = type == 1 ? await this.$api.salesman.salesmanQr() : await this.$api.agent.agentInviteQr({
type: 1
})
let {
channel_poster = ''
} = this.configInfo
let cover = channel_poster || 'https://lbqny.migugu.com/admin/anmo/mine/channel-share.png'
let {
nickName,
avatarUrl
} = this.userInfo
let qr_radius = '0rpx'
// #ifdef MP-WEIXIN
qr_radius = '97rpx'
// #endif
let poster = {
css: {
width: '750rpx',
height: '1280rpx',
},
views: [{
type: 'image',
src: cover,
css: {
width: '750rpx',
height: '1140rpx',
objectFit: "cover",
top: '0rpx',
left: '0rpx',
position: 'absolute'
}
},
{
type: 'view',
css: {
background: '#fff',
width: '750rpx',
height: '140rpx',
bottom: '0rpx',
left: '0rpx',
position: 'absolute'
},
views: [{
type: 'image',
src: avatarUrl,
css: {
position: 'absolute',
width: '94rpx',
height: '94rpx',
objectFit: 'cover',
borderRadius: '50rpx',
bottom: '23rpx',
left: '20rpx'
}
},
{
type: 'text',
text: nickName,
css: {
position: 'absolute',
bottom: '70rpx',
left: '130rpx',
width: '350rpx',
fontSize: '32rpx',
fontWeight: '400',
color: '#000'
}
},
{
type: 'text',
text: '邀请您成为TA的渠道商扫描二维码立即加入吧!',
css: {
position: 'absolute',
bottom: '25rpx',
left: '130rpx',
width: '750rpx',
fontSize: '26rpx',
color: '#999999',
}
}
],
},
{
type: 'image',
src: qr_code,
css: {
position: 'absolute',
width: '200rpx',
height: '200rpx',
bottom: '337rpx',
left: '53rpx',
background: '#ffffff',
borderRadius: qr_radius
}
},
{
type: 'text',
text: '扫一扫',
css: {
position: 'absolute',
bottom: '290rpx',
left: '53rpx',
width: '200rpx',
fontSize: '26rpx',
color: '#999999',
textAlign: 'center'
}
}
]
}
// 渲染
this.$refs.painter.render(poster);
// 生成图片
this.$refs.painter.canvasToTempFilePathSync({
fileType: "jpg",
quality: 1,
success: (res) => {
that.$util.hideAll()
this.src = res.tempFilePath
},
});
},
previewImage() {
let finalPath = this.src;
uni.previewImage({
current: finalPath,
urls: [finalPath]
})
},
async saveImage() {
await this.$util.checkAuth({
type: "writePhotosAlbum"
});
let filePath = this.src;
let [err, success] = await uni.saveImageToPhotosAlbum({
filePath
})
if (err) return;
uni.showToast({
icon: 'none',
title: '保存成功'
})
},
toPreviewSave() {
// #ifdef H5
this.previewImage()
// #endif
// #ifndef H5
this.saveImage()
// #endif
}
}
}
</script>
<style>
.code-img {
width: 750rpx;
height: 1280rpx;
}
</style>