diff --git a/src/views/incomePayments/meetManage/AddOrDetailMeet.vue b/src/views/incomePayments/meetManage/AddOrDetailMeet.vue index a9b8ab6..0c1bf4c 100644 --- a/src/views/incomePayments/meetManage/AddOrDetailMeet.vue +++ b/src/views/incomePayments/meetManage/AddOrDetailMeet.vue @@ -498,6 +498,12 @@ export default { this.meetingType = record.meetingType + '' // 编辑根据接口返回的会议类型获取不同的会议url this.url = this.createUrlByMeetingType(this.meetingType) + // 判断会议费用是否为 0 缴费二维码显示 + if(this.model.meetingCosts === '0.00' ){ + this.QRcodeBool = false + }else { + this.QRcodeBool = true + } } else { this.title = '新增会议' // 如果是标协会会议需要显示酒店联系人 diff --git a/src/views/incomePayments/meetManage/Attendance.vue b/src/views/incomePayments/meetManage/Attendance.vue index 6cc4e64..a586ecd 100644 --- a/src/views/incomePayments/meetManage/Attendance.vue +++ b/src/views/incomePayments/meetManage/Attendance.vue @@ -58,13 +58,13 @@ {{ currentMeetingInfo.vipInvitationCode }} - {{ currentMeetingInfo.speakerInvitationCode }} + - {{ currentMeetingInfo.guestInvitationCode }} + - {{ currentMeetingInfo.cooperativeInvitationCode }} + diff --git a/src/views/incomePayments/meetManage/SignUpInfoDetail.vue b/src/views/incomePayments/meetManage/SignUpInfoDetail.vue index 3f2558d..a9a8e72 100644 --- a/src/views/incomePayments/meetManage/SignUpInfoDetail.vue +++ b/src/views/incomePayments/meetManage/SignUpInfoDetail.vue @@ -5,12 +5,12 @@