This commit is contained in:
Paidax
2025-04-28 08:40:55 +08:00
parent 9b9e53056f
commit d046c3be5d
144 changed files with 2559 additions and 1222 deletions
@@ -3,7 +3,7 @@
<div>
<el-dialog
title="活动二维码"
:title="title"
:visible.sync="codeDialogVisible"
:close-on-click-modal="false"
width="40%">
@@ -27,7 +27,7 @@ module.exports = {
data() {
return {
codeDialogVisible: false,
title: '活动二维码',
}
},
methods: {
@@ -47,7 +47,7 @@ module.exports = {
var filename = name + '_' + (new Date()).getTime() + '.' + type;
this.saveFile(dataurl, filename);
},
openCode(url) {
openCode(url, title) {
this.codeDialogVisible = true
this.$nextTick(() => {
$("#qrcode").html("")
@@ -59,6 +59,7 @@ module.exports = {
correctLevel: 3 //容错级别,默认为2,最高为3,为了让用户扫码最快,容错级别应当设为最低
});
})
this.title = title ? title : '活动二维码'
console.log(APP_DOMAIN + url)
},
}