update 起草组成员维护

This commit is contained in:
danshihao
2024-01-11 11:33:55 +08:00
parent 37b41b1e68
commit dd8c5b8b41
2 changed files with 10 additions and 3 deletions
+3
View File
@@ -21,6 +21,9 @@ window._CONFIG["singInQRCodeURL"] = "http://10.10.10.46:8055/signinurl"
// 页面显示用的会议报名二维码连接 // 报名页面迁移到企业端 地址需要修改为企业端的地址
window._CONFIG["singInQRCodHref"]= 'http://localhost:3001/signupentrance'
// 起草组成员维护-企业端报名入口
window._CONFIG["singInDraftHref"]= 'http://localhost:3001/signupdraftteamentrance'
// 票据打印--寄件人单位名称
window._CONFIG["sendCompanyName"] = "中国汽车标准化研究院"
// 票据打印--寄件人地址
@@ -39,7 +39,7 @@
<a-spin :spinning="spinning">
<a-row class="flex-col signUpInfo">
<a-col :xxl="8" :xl="12" :sm="24">
<label>报名链接</label><span>{{ signUpHerfUrl }}</span>
<label>报名链接</label><span>{{ showSignUpHref }}</span>
</a-col>
<a-col :xxl="8" :xl="12" :sm="24">
<label>报名二维码</label><img class="qr-code" :src="signUpQRCode" alt="报名二维码"/><i class="copy primary-color"
@@ -200,9 +200,13 @@ export default {
},
mixins: [JeroListMixin],
computed: {
// 报名链接
// 小程序报名链接
signUpHerfUrl() {
return `${ window._CONFIG['singUpQRCodeURL'] }?id=${ this.$route.query.draftingGroupProjectId }`
return `${ window._CONFIG['singInDraftHref'] }?id=${ this.$route.query.draftingGroupProjectId }`
},
// 企业端报名地址
showSignUpHref(){
return `${ window._CONFIG['singInDraftHref'] }?id=${ this.$route.query.draftingGroupProjectId }`
},
importExcelUrl: function () {
return `${ window._CONFIG['domianURL'] }/${ this.url.importExcelUrl }`