[update]-会议报名网址和连接的修改

This commit is contained in:
fengchenchen
2022-01-10 14:29:06 +08:00
parent 6db4bf7c9b
commit 30c9145f0e
8 changed files with 22 additions and 15 deletions
+1 -1
View File
@@ -254,7 +254,7 @@ export default {
},
// 去报名
signUpRecord(item) {
let url = `${window._CONFIG['singUpQRCodeURL']}?id=${item.id}`
let url = `${window._CONFIG['singInQRCodHref']}?id=${item.id}`
window.open(url, '_blank')
},
/*
+1 -1
View File
@@ -899,7 +899,7 @@ export default {
}
},
goSignUpPage() {
let url = `${window._CONFIG['singUpQRCodeURL']}?id=${this.model.id}`
let url = `${window._CONFIG['singInQRCodHref']}?id=${this.model.id}`
window.open(url, '_blank')
}
@@ -393,7 +393,7 @@ export default {
// 可报名的点击应该是去报名
// if (item.meetingSignUpType === 1) {
// let url = `${window._CONFIG['singUpQRCodeURL']}?id=${item.id}`
// let url = `${window._CONFIG['singInQRCodHref']}?id=${item.id}`
// window.open(url, '_blank')
// } else {
// 打开会议详情
@@ -403,7 +403,7 @@ export default {
},
// 去报名
signUpRecord(item) {
let url = `${window._CONFIG['singUpQRCodeURL']}?id=${item.id}`
let url = `${window._CONFIG['singInQRCodHref']}?id=${item.id}`
window.open(url, '_blank')
},
/*
+4 -3
View File
@@ -125,12 +125,13 @@ export default {
}
},
async mounted() {
this.singUpQRCode = await this.generateQRCode(this.signUpHerfUrl)
let codeUrl = `${ window._CONFIG['singUpQRCodeURL'] }?id=${this.meetingId}`
this.singUpQRCode = await this.generateQRCode(codeUrl)
},
computed:{
// 报名链接
signUpHerfUrl() {
return `${ window._CONFIG['singUpQRCodeURL'] }?id=${this.meetingId}`
return `${ window._CONFIG['singInQRCodHref'] }?id=${this.meetingId}`
},
},
methods: {
@@ -327,4 +328,4 @@ export default {
.word-beak {
word-break: break-all;
}
</style>
</style>
@@ -378,7 +378,7 @@ export default {
},
// 去报名
signUpRecord(item) {
let url = `${window._CONFIG['singUpQRCodeURL']}?id=${item.id}`
let url = `${window._CONFIG['singInQRCodHref']}?id=${item.id}`
window.open(url, '_blank')
},
/*