【开发】会议报名地址修改
This commit is contained in:
@@ -92,11 +92,11 @@
|
||||
</div>
|
||||
<a-row class="flex-col">
|
||||
<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"
|
||||
@click="copy(signUpHerfUrl)">复制</i>
|
||||
@click="copy(showSignUpHref)">复制</i>
|
||||
</a-col>
|
||||
<a-col :xxl="8" :xl="12" :sm="24">
|
||||
<label>签到二维码:</label><img class="qr-code" :src="signInQRCode" alt="签到二维码"/>
|
||||
@@ -651,8 +651,12 @@ export default {
|
||||
// 签到地址 只给一个会议id 加前缀是为了区分 小程序的扫码签到是否扫描的是签到二维码
|
||||
// 2021-11-26 客户变更 要微信扫描签到二维码跳转程序去签到
|
||||
signInUrl() {
|
||||
return `${window._CONFIG['singInQRCodeURL']}?scansign=${this.$route.query.id}`
|
||||
}
|
||||
return `${window._CONFIG['singInQRCodeHref']}?scansign=${this.$route.query.id}`
|
||||
},
|
||||
// 页面先使用的 报名地址
|
||||
showSignUpHref(){
|
||||
return `${ window._CONFIG['singInQRCodHref'] }?id=${ this.$route.query.id }`
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
selectIdentity(){
|
||||
|
||||
@@ -13,7 +13,7 @@ export default {
|
||||
},
|
||||
meetingFiles:{
|
||||
rules: [
|
||||
{ required: false, message: '请上传会议通知' },
|
||||
{ required: true, message: '请上传会议通知' },
|
||||
],
|
||||
validateTrigger:['change']
|
||||
},
|
||||
@@ -85,7 +85,7 @@ export default {
|
||||
},
|
||||
contactPerson:{
|
||||
rules: [
|
||||
{ required: false, message: '请输入酒店联系人' },
|
||||
{ required: true, message: '请输入酒店联系人' },
|
||||
],
|
||||
validateTrigger:['blur']
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user