diff --git a/src/views/signUp/SignUpPage.vue b/src/views/signUp/SignUpPage.vue index 288bbb8..883f461 100644 --- a/src/views/signUp/SignUpPage.vue +++ b/src/views/signUp/SignUpPage.vue @@ -559,7 +559,7 @@ export default { } else if (this.currentMeetingInfo.meetingType === '3' && this.currentMeetingInfo.isWasic) { // 国际研讨会 且为WASIC 会议 this.isWasic = true - this.meetingCostSum = this.currentMeetingInfo.meetingCostsTwoTopic + this.meetingCostSum = '0.00' this.meetingMoney = `114/22焦点论坛+国际发展论坛+ 2个及以上专题研讨(${this.currentMeetingInfo.meetingCostsThreeTopic}/人); 114/22焦点论坛+国际发展论坛+ 1个及以下专题研讨(${this.currentMeetingInfo.meetingCostsTwoTopic}/人)` this.getLinkTopicsOptionArr() @@ -673,7 +673,6 @@ export default { return } this.form.validateFields((err, values) => { - console.log("---------err, values--------", err, values) if (!err) { // 判断邀请码是否错误 需要判断会议类型 以及 是否有邀请码 if (this.codeErrorBool && this.currentMeetingInfo.meetingType === '3' && this.inviteCodeBool) { @@ -883,12 +882,17 @@ export default { calcMeetingCostSum() { // 對单选的数据进行判断 this.$nextTick(() => { - let radioKey = this.form.getFieldValue('radioKey') - let radioKeyTwo = this.form.getFieldValue('radioKeyTwo') - if(radioKey && radioKeyTwo) { - this.meetingCostSum = this.currentMeetingInfo.meetingCostsThreeTopic + // 验证通过了的嘉宾 就不变化了 + if(!this.guestType) { + let radioKey = this.form.getFieldValue('radioKey') + let radioKeyTwo = this.form.getFieldValue('radioKeyTwo') + if(radioKey && radioKeyTwo) { + this.meetingCostSum = this.currentMeetingInfo.meetingCostsThreeTopic + } else { + this.meetingCostSum = this.currentMeetingInfo.meetingCostsTwoTopic + } } else { - this.meetingCostSum = this.currentMeetingInfo.meetingCostsTwoTopic + this.meetingCostSum = '0.00' } }) },