|
|
@ -39,8 +39,21 @@ |
|
|
|
<video ref="videoEL" width="500px" height="480px" autoplay v-if="!form.img"></video> |
|
|
|
<!--canvas截取流--> |
|
|
|
<canvas ref="canvas" width="500px" height="500px" id="canvas" v-show="form.img"></canvas> |
|
|
|
<div v-if="dispalyTitle" style="position: absolute;color: #fff;top: 28vh;left: 40vw;font-size: 1.5em;"> |
|
|
|
{{ dispalyTitle }} |
|
|
|
</div> |
|
|
|
<canvas width="180px" height="180px" id="canvas1" |
|
|
|
style="position: absolute;top: 48vh;left: calc(50vw - 90px);"></canvas> |
|
|
|
style="position: absolute;top: 34vh;left: calc(50vw - 90px);"></canvas> |
|
|
|
|
|
|
|
<el-row v-if="pngList.length" style="position: absolute;color: #fff;top: 57vh;left: 1vw;"> |
|
|
|
<el-col :span="6" v-for="( pngItem, pngIndex) in pngList"> |
|
|
|
<v-row> |
|
|
|
<v-col :span="4">{{ pngItem.age }}岁</v-col> |
|
|
|
<v-col :span="20"><img :src="pngItem.png" :alt="`${pngItem.age}岁`" width="150px" |
|
|
|
height="150px" /></v-col> |
|
|
|
</v-row> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</dv-border-box1> |
|
|
@ -70,12 +83,14 @@ export default { |
|
|
|
img: '' |
|
|
|
}, |
|
|
|
videoEL: null, |
|
|
|
isVip: true, |
|
|
|
isVip: false, |
|
|
|
pngObj: {}, |
|
|
|
qrString: "", |
|
|
|
shexiangotuBtn: false, |
|
|
|
paizhaoBtn: true, |
|
|
|
uploadBtn: true, |
|
|
|
dispalyTitle: "", |
|
|
|
pngList: [] |
|
|
|
} |
|
|
|
}, |
|
|
|
methods: { |
|
|
@ -182,7 +197,7 @@ export default { |
|
|
|
// let baseurl = "http://127.0.0.1:7001" |
|
|
|
that.qrString = `${baseurl}/?id=${_.get(that.pngObj, ["list", "_id"])}` |
|
|
|
let canvas = document.getElementById('canvas1') |
|
|
|
console.log(777, that.pngObj, baseurl) |
|
|
|
console.log(777, that.pngObj, canvas) |
|
|
|
QRCode.toCanvas(canvas, that.qrString, function (error) { |
|
|
|
if (error) { |
|
|
|
ElMessage({ |
|
|
@ -198,6 +213,8 @@ export default { |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
|
this.dispalyTitle = `[${that.form.name || "未填写"}]10岁-80岁照片模拟` |
|
|
|
this.pngList = _.get(that.pngObj, ["list", "createImgList"], []) |
|
|
|
// 设置5秒后关闭弹窗 |
|
|
|
setTimeout(() => { |
|
|
|
that.qrString = "" |
|
|
@ -205,6 +222,8 @@ export default { |
|
|
|
ctx.width = 500 |
|
|
|
ctx.height = 500 |
|
|
|
ctx.clearRect(0, 0, 500, 500); |
|
|
|
this.dispalyTitle = "" |
|
|
|
this.pngList = [] |
|
|
|
}, 1000 * 60 * 10); |
|
|
|
} |
|
|
|
}) |
|
|
@ -242,10 +261,9 @@ export default { |
|
|
|
} |
|
|
|
}, |
|
|
|
async mounted() { |
|
|
|
console.log(8877, QRCode) |
|
|
|
this.watchPng() |
|
|
|
|
|
|
|
// this.testFun() |
|
|
|
let fiveDay = dayjs('2024-05-21T00:00:00').valueOf() |
|
|
|
let fiveDay = dayjs('2024-05-24T00:00:00').valueOf() |
|
|
|
if (!this.isVip) { |
|
|
|
if (dayjs().valueOf() > fiveDay) { |
|
|
|
this.isVip = false |
|
|
@ -254,6 +272,8 @@ export default { |
|
|
|
this.isVip = true |
|
|
|
} |
|
|
|
} |
|
|
|
console.log(8877, QRCode) |
|
|
|
this.watchPng() |
|
|
|
}, |
|
|
|
watch: {}, |
|
|
|
computed: {} |
|
|
@ -296,4 +316,15 @@ export default { |
|
|
|
background-color: #83838399; |
|
|
|
border: none; |
|
|
|
} |
|
|
|
|
|
|
|
.noVip { |
|
|
|
margin-top: 45vh; |
|
|
|
margin-left: 25vw; |
|
|
|
} |
|
|
|
|
|
|
|
.noVipTag { |
|
|
|
font-size: 48px; |
|
|
|
line-height: 48px; |
|
|
|
padding: 36px; |
|
|
|
} |
|
|
|
</style> |
|
|
|