diff --git a/src/views/signUp/SignUpEntrance.vue b/src/views/signUp/SignUpEntrance.vue index e305883..8da84cf 100644 --- a/src/views/signUp/SignUpEntrance.vue +++ b/src/views/signUp/SignUpEntrance.vue @@ -181,8 +181,9 @@ export default { }) } // 初始化会议费用 - if (this.currentMeetingInfo.meetingCostsVip) { - this.meetingMoney = `普通会员(${this.currentMeetingInfo.meetingCosts}/人) 标协会员(${this.currentMeetingInfo.meetingCostsVip}/人)` + // 有vip会议费用 并且 不是 信息交流会(年会) + if (this.currentMeetingInfo.meetingCostsVip && (this.currentMeetingInfo.tbMeetingType + '' !== '3')) { + this.meetingMoney = `非标协会员(${this.currentMeetingInfo.meetingCosts}/人) 标协会员(${this.currentMeetingInfo.meetingCostsVip}/人)` } else { this.meetingMoney = ` ${this.currentMeetingInfo.meetingCosts}/人` } diff --git a/src/views/signUp/SignUpPage.vue b/src/views/signUp/SignUpPage.vue index bc70dc4..6a1e4a9 100644 --- a/src/views/signUp/SignUpPage.vue +++ b/src/views/signUp/SignUpPage.vue @@ -374,8 +374,9 @@ export default { this.currentMeetingInfo = res.result this.meetingType = this.currentMeetingInfo.meetingType // 初始化会议费用 - if (this.currentMeetingInfo.meetingCostsVip) { - this.meetingMoney = `普通会员(${this.currentMeetingInfo.meetingCosts}/人) 标协会员(${this.currentMeetingInfo.meetingCostsVip}/人)` + // 有vip会议费用 并且 不是 信息交流会(年会) + if (this.currentMeetingInfo.meetingCostsVip && (this.currentMeetingInfo.tbMeetingType + '' !== '3')) { + this.meetingMoney = `非标协会员(${this.currentMeetingInfo.meetingCosts}/人) 标协会员(${this.currentMeetingInfo.meetingCostsVip}/人)` // 费用合计 this.meetingCostSum = this.currentMeetingInfo.meetingCosts } else {