|
@@ -28,7 +28,8 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
-import { Button, Popup, Notify } from 'vant'
|
|
|
|
|
|
+import { Button, Popup, Notify, Toast } from 'vant'
|
|
|
|
+import QRCode from 'qrcodejs2'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: 'index',
|
|
name: 'index',
|
|
@@ -38,12 +39,129 @@ export default {
|
|
},
|
|
},
|
|
data () {
|
|
data () {
|
|
return {
|
|
return {
|
|
- booShareTip: false
|
|
|
|
|
|
+ booShareTip: false,
|
|
|
|
+ strPostSrc: '',
|
|
|
|
+ qrcode: null,
|
|
|
|
+ codeParams: {}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
handleSave () {
|
|
handleSave () {
|
|
Notify({ type: 'success', message: '长按图片保存到手机' })
|
|
Notify({ type: 'success', message: '长按图片保存到手机' })
|
|
|
|
+ },
|
|
|
|
+ createQRCode () {
|
|
|
|
+ const { link } = this.codeParams
|
|
|
|
+ Toast.loading({
|
|
|
|
+ message: '海报生成中...',
|
|
|
|
+ forbidClick: true,
|
|
|
|
+ duration: 0
|
|
|
|
+ })
|
|
|
|
+ if (!this.qrcode) {
|
|
|
|
+ this.qrcode = new QRCode('fbt-qr-code', {
|
|
|
|
+ width: 212,
|
|
|
|
+ height: 212,
|
|
|
|
+ text: link,
|
|
|
|
+ colorDark: '#000',
|
|
|
|
+ colorLight: '#fff'
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ this.qrcode.clear()
|
|
|
|
+ this.qrcode.makeCode(link)
|
|
|
|
+ }
|
|
|
|
+ const timer = setTimeout(() => {
|
|
|
|
+ clearTimeout(timer)
|
|
|
|
+ this.createPoster()
|
|
|
|
+ }, 500)
|
|
|
|
+ },
|
|
|
|
+ setImg (params) {
|
|
|
|
+ const { isDrewCircle } = params
|
|
|
|
+ const img = new Image()
|
|
|
|
+ img.crossOrigin = 'anonymous'
|
|
|
|
+ img.onload = function () {
|
|
|
|
+ if (isDrewCircle) {
|
|
|
|
+ params.ctx.beginPath()
|
|
|
|
+ params.ctx.arc(params.x + params.width / 2, params.y + params.width / 2, params.width / 2, 0, Math.PI * 2, false)
|
|
|
|
+ params.ctx.clip()
|
|
|
|
+ }
|
|
|
|
+ params.ctx.drawImage(img, params.x, params.y, params.width, params.height)
|
|
|
|
+ params.cb()
|
|
|
|
+ }
|
|
|
|
+ img.src = params.src
|
|
|
|
+ },
|
|
|
|
+ createPoster () {
|
|
|
|
+ const vm = this
|
|
|
|
+ const { posterBg } = this
|
|
|
|
+ const { partnerImgUrl, partnerName, x, y, width, height } = this.codeParams
|
|
|
|
+ const canvas = document.getElementById('fbt-canvas')
|
|
|
|
+ const ctx = canvas.getContext('2d')
|
|
|
|
+ const canvas2 = document.getElementById('fbt-qr-code').getElementsByTagName('canvas')[0]
|
|
|
|
+ const code = {}
|
|
|
|
+ code.src = canvas2.toDataURL('image/png', 1)
|
|
|
|
+ canvas.width = 750
|
|
|
|
+ canvas.height = 1446
|
|
|
|
+ // 绘制背景
|
|
|
|
+ vm.setImg({
|
|
|
|
+ ctx,
|
|
|
|
+ src: posterBg,
|
|
|
|
+ x: 0,
|
|
|
|
+ y: 0,
|
|
|
|
+ width: 750,
|
|
|
|
+ height: 1446,
|
|
|
|
+ cb () {
|
|
|
|
+ if (partnerImgUrl) {
|
|
|
|
+ ctx.font = '400 28px/40px STYuanti-Regular'
|
|
|
|
+ ctx.fillStyle = '#C9AD8D'
|
|
|
|
+ ctx.fillText('推广人:', 236, 1128)
|
|
|
|
+ ctx.save()
|
|
|
|
+ vm.setImg({
|
|
|
|
+ ctx,
|
|
|
|
+ src: partnerImgUrl,
|
|
|
|
+ x: 346,
|
|
|
|
+ y: 1100,
|
|
|
|
+ width: 40,
|
|
|
|
+ height: 40,
|
|
|
|
+ isDrewCircle: true,
|
|
|
|
+ cb () {
|
|
|
|
+ ctx.restore()
|
|
|
|
+ ctx.font = '600 28px/40px STYuanti-Regular'
|
|
|
|
+ ctx.fillStyle = '#C9AD8D'
|
|
|
|
+ ctx.fillText(partnerName, 398, 1130)
|
|
|
|
+ // 绘制二维码
|
|
|
|
+ vm.setImg({
|
|
|
|
+ ctx,
|
|
|
|
+ src: code.src,
|
|
|
|
+ x: x,
|
|
|
|
+ y: y,
|
|
|
|
+ width: width,
|
|
|
|
+ height: height,
|
|
|
|
+ cb () {
|
|
|
|
+ vm.strPostSrc = canvas.toDataURL('image/png', 1)
|
|
|
|
+ vm.showPoster = true
|
|
|
|
+ Toast.clear()
|
|
|
|
+ Notify({ type: 'primary', message: '长按图片保存到相册', duration: 3000 })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ // 绘制二维码
|
|
|
|
+ vm.setImg({
|
|
|
|
+ ctx,
|
|
|
|
+ src: code.src,
|
|
|
|
+ x: x,
|
|
|
|
+ y: y,
|
|
|
|
+ width: width,
|
|
|
|
+ height: height,
|
|
|
|
+ cb () {
|
|
|
|
+ vm.strPostSrc = canvas.toDataURL('image/png', 1)
|
|
|
|
+ vm.showPoster = true
|
|
|
|
+ Toast.clear()
|
|
|
|
+ Notify({ type: 'primary', message: '长按图片保存到相册', duration: 3000 })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ })
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|