会议签到二维码

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
+2
View File
@@ -13,4 +13,6 @@ window._CONFIG["onlinePreviewDomainURL"] = "http://localhost:8012/onlinePreview"
// 会议管理报名二维码地址
window._CONFIG['singUpQRCodeURL'] = 'http://localhost:3000/signUpEntrance'
// 签到二维码url
window._CONFIG['signInUrl'] = '/meeting/payMeetingSituation/getSignInPage'
@@ -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: {