1.1、安装二维码插件qrcodejs2
//在终端输入npm命令,安装二维码插件
npm install qrcodejs2 --save
1.2、在vue文件中,引入生成二维码插件
import QRCode from 'qrcodejs2'; //在vue文件中,引入生成二维码插件
1.3、构建二维码对象qrCodeDiv
全部代码
<!-- 生成绑定微信二维码界面 -->
<el-dialog
title="微信扫码绑定用户"
:visible.sync="isShowCard"
width="400px"
center
:before-close="jieBangClose"
>
<!-- 定义一个展示二维码的div -->
<div style="display: flex; justify-content: center">
<!-- 二维码对象可以通过 ref 绑定 -->
<div id="qrCode" ref="qrCodeDiv"></div>
</div>
</el-dialog>
// 1. 方法调用
bangding(row){
let memberId = row.memberId;
this.isShowCard = true;
if(this.ids != null){
memberId = this.ids[0];
}
this.createQRCode(memberId);
}
//2. 具体的绑定方法
createQRCode(id){
this.$nextTick(()=>{
this.$refs.qrCodeDiv.innerHTML = '';//二维码清除
alert(id)
new QRCode(this.$refs.qrCodeDiv, {
text: "id="+ id,//二维码链接,参数是否添加看需求
width: 200,//二维码宽度
height: 200,//二维码高度
colorDark: "#333333", //二维码颜色
colorLight: "#ffffff", //二维码背景色
correctLevel: QRCode.CorrectLevel.L //容错率,L/M/H
});
})
}