diff --git a/src/views/MessagePage/UploadMeetingCertificateModal.vue b/src/views/MessagePage/UploadMeetingCertificateModal.vue index f3a792d..fa4da5f 100644 --- a/src/views/MessagePage/UploadMeetingCertificateModal.vue +++ b/src/views/MessagePage/UploadMeetingCertificateModal.vue @@ -50,7 +50,8 @@ - + + @@ -64,17 +65,18 @@

付款凭证

+ - - @@ -85,7 +87,8 @@ @@ -130,6 +133,8 @@ export default { meetingName: '', // 是否是线上缴费方式 payModeOnlineBool: false, + // 审核是否通过 + checkBool:false, // 参会人id singUpPerosnId:'' } @@ -159,7 +164,22 @@ export default { // 获取参会人信息 this.querySingUpUserInfo(param.situationId).then(res => { this.model = {} - this.model = res + this.model = res + // 如果缴费方式为汇款的并且上传了缴费凭证 回显缴费凭证 + if(this.model.paymentRecord && this.model.payMode === 1 ){ + this.form.setFieldsValue({'paymentRecord':this.model.paymentRecord}) + } + // 如果缴费方式为线上缴费并且上传了缴费凭证和订单后四位 需要回显 + if(this.model.paymentRecord && this.model.payMode === 2 ){ + this.form.setFieldsValue({'paymentRecord':this.model.paymentRecord,'orderCode':this.model.orderCode}) + } + // 审核通过以后不可在上传 + if(this.model.checkResult === 1){ + this.checkBool = true + }else { + this.checkBool = false + } + }) } }, @@ -240,7 +260,7 @@ h3.title::before { left: -10px; content: ""; height: 20px; - width: 2px; + width: 3px; background: #069f99; }