H5使用l-painter生成海报和二维码
·
<template>
<l-painter @success="path = $event" isCanvasToTempFilePath hidden>
<l-painter-view css="width:100%;heigh:100%; position: relative;">
<l-painter-image
src="@/static/price/share.png"
css="width:100%;heigh:100%;"
></l-painter-image>
<l-painter-qrcode
:text="qrCodeText"
css="width: 150rpx; height: 150rpx; position: absolute; bottom: 50rpx; left: 60rpx;"
></l-painter-qrcode>
</l-painter-view>
</l-painter>
<van-popup
v-model:show="isShowPoster"
safe-area-inset-bottom
class="poster_popup"
v-if="path"
>
<image v-if="path" :src="path" mode="widthFix"></image>
<view class="desc">长按保存海报二维码</view>
</van-popup>
</template>
更多推荐
所有评论(0)