会议签到二维码

This commit is contained in:
fengachen
2021-10-12 13:40:10 +08:00
parent 93e7e8a4f0
commit 1349c8c5e0
2 changed files with 7 additions and 1 deletions
@@ -574,7 +574,7 @@ export default {
// 生成会议报名二维码
this.signUpQRCode = await this.generateQRCode(this.signUpHerfUrl)
// 生成签到二维码
this.signInQRCode = await this.generateQRCode('https://www.baidu.com')
this.signInQRCode = await this.generateQRCode(this.signInUrl)
},
computed: {
// 标协会议类型
@@ -601,6 +601,10 @@ export default {
// 报名链接
signUpHerfUrl() {
return `${window._CONFIG['singUpQRCodeURL']}?id=${this.$route.query.id}`
},
// 签到地址
signInUrl() {
return `${window._CONFIG['signInUrl']}?id=${this.$route.query.id}`
}
},
methods: {