报名状态 查看凭证修改

This commit is contained in:
fengachen
2021-11-30 10:33:14 +08:00
parent 5950e60ab0
commit 9beb5b48c1
2 changed files with 4 additions and 4 deletions
@@ -200,8 +200,8 @@ export default {
this.form.setFieldsValue({'paymentRecord': this.model.paymentRecord, 'orderCode': this.model.orderCode})
})
}
// 审核通过以后不可在上传
if (this.model.checkResult === 1) {
// 审核通过以后不可在上传 凭证审核中 只能查看
if (this.model.checkResult === 1 || param.signUpStatus === 2) {
this.checkBool = true
} else {
this.checkBool = false
@@ -104,7 +104,7 @@
<a-button
v-show="(item.payMode === 2 || item.payMode === 1)&& (item.meetingStatus == 2 || item.meetingStatus === 3) && item.registerCheckResult === 1 && item.meetingStatus === 3 "
type="primary" @click="uploadPaymentRecord(item)">
上传凭证
{{item.signUpStatus === 2 ? '查看凭证' : '上传凭证' }}
</a-button>
</p>
@@ -141,7 +141,7 @@
</div>
</div>
<!--上传凭证-->
<upload-meeting-certificate-modal ref="upload"></upload-meeting-certificate-modal>
<upload-meeting-certificate-modal ref="upload" @ok="initData"></upload-meeting-certificate-modal>
<!-- 会议详情-->
<meeting-detail-modal ref="meetingDetail" :is-meeting-bool="true"></meeting-detail-modal>
</div>