[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
+6 -4
View File
@@ -12,12 +12,14 @@ window._CONFIG["casPrefixUrl"] = "http://cas.example.org:8443/cas";
// 预览文件地址
window._CONFIG["onlinePreviewDomainURL"] = "http://10.0.1.9:9012/onlinePreview";
// todo 需要改为企业端的报名地址 --- 本地
// 会议管理报名二维码
window._CONFIG['singUpQRCodeURL'] = 'http://10.0.1.9:21825/signupentrance'
// 需要改为企业端的报名地址 --- 本地
// 会议报名页面-报名二维码-生成小程序二维码使用
window._CONFIG['singUpQRCodeURL'] = 'http://bxxt.hzwlsoft.com/signupentrance'
// 页面显示用的会议报名网址-pc端使用
window._CONFIG["singInQRCodHref"]= 'http://10.0.1.9:21826/signupentrance'
// 路由转发 -会员系统的路由转发前缀
window._CONFIG["memberURL"] = "/memberApi";
// 会员系统的静态文件的地址
window._CONFIG["memberStaticDomainURL"] = window._CONFIG["memberURL"] + "/sys/common/static";
window._CONFIG["memberDomianWebSocketURL"] = "http://10.0.10.78:9000/memberApi";
window._CONFIG["memberDomianWebSocketURL"] = "http://10.0.1.9:9000/api";
+3 -1
View File
@@ -12,8 +12,10 @@ window._CONFIG["casPrefixUrl"] = "http://cas.example.org:8443/cas";
// 预览文件地址
window._CONFIG["onlinePreviewDomainURL"] = "http://139.9.235.66:8012/onlinePreview";
// 会议管理报名二维码地址
// 会议报名页面-报名二维码网址 -生成小程序二维码使用
window._CONFIG['singUpQRCodeURL'] = 'http://bxxt.hzwlsoft.com/signupentrance'
// 页面显示用的会议报名网址-pc端使用
window._CONFIG["singInQRCodHref"]= 'http://bxxt.hzwlsoft.com/signupentrance'
// 路由转发 -会员系统的路由转发前缀
window._CONFIG["memberURL"] = "/memberApi";
+4 -2
View File
@@ -12,8 +12,10 @@ window._CONFIG["casPrefixUrl"] = "http://cas.example.org:8443/cas";
// 预览文件地址
window._CONFIG["onlinePreviewDomainURL"] = "http://cwp.catarc.org.cn:8092/onlinePreview";
// 会议管理报名二维码地址
window._CONFIG['singUpQRCodeURL'] = 'http://cwp.catarc.org.cn/signupentrance'
// 会议报名页面-报名二维码网址 -生成小程序二维码使用
window._CONFIG['singUpQRCodeURL'] = 'https://cwp.catarc.org.cn/signupentrance'
// 页面显示用的会议报名网址-pc端使用
window._CONFIG["singInQRCodHref"]= 'http://cwp.catarc.org.cn/signupentrance'
// 路由转发 -会员系统的路由转发前缀
+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')
},
/*