上传凭证的bug

This commit is contained in:
fengachen
2021-10-16 23:54:06 +08:00
parent fe41d36b99
commit a45fe9b544
2 changed files with 3 additions and 3 deletions
@@ -153,7 +153,7 @@ export default {
},
methods: {
open(param) {
this.singUpPerosnId = param.id
this.singUpPerosnId = param.situationId
this.form.resetFields()
this.visible = true
this.meetingName = param.meetingName
@@ -161,7 +161,7 @@ export default {
this.payModeOnlineBool = param.payMode === 2 || false
if (param.id) {
// 获取参会人信息
this.querySingUpUserInfo(param.id).then(res => {
this.querySingUpUserInfo(param.situationId).then(res => {
this.model = {}
this.model = res
})
@@ -88,7 +88,7 @@
<img src="../../assets/meetingImgs/meeting_paymode.png"/>
缴费方式{{ item.payMode_dictText }}
<!-- 缴费方式为线上缴费或者汇款的只有在会议召开时间期间才显示上传凭证按钮 "-->
<a-button v-show="item.payMode === 2 || item.payMode === 1" type="primary" @click="uploadPaymentRecord(item)">上传凭证</a-button>
<a-button v-show="(item.payMode === 2 || item.payMode === 1)&& (item.meetingStatus == 2 || item.meetingStatus === 3) " type="primary" @click="uploadPaymentRecord(item)">上传凭证</a-button>
</p>
<img v-if="item.meetingStatus === 2 " class="meeting-img-status" src="../../assets/meetingImgs/no-start.png"/>
<img v-if="item.meetingStatus === 3 " class="meeting-img-status" src="../../assets/meetingImgs/ing.png" />