<view class="erweima" >
<view id="qrcode" ref="qrcode" class="img" style="display: none"></view>
<!-- 展示在页面上的二维码,可以长按识别 -->
<view class="img">
<img :src="qrcodeimg" alt="" v-show="qrcodeimg">
</view>
</view>
crateQrcode () {
new QRCode('qrcode', {
width: uni.upx2px(170),
height: uni.upx2px(170), // 高度
text: this.address,
})
this.$nextTick(()=>{
// 生成二维码之后,获取canvas元素
let qrcodeEle = document.getElementById("qrcode")
let cvs = qrcodeEle.querySelector('canvas')
this.qrcodeimg = cvs.toDataURL('image/png')
})
},