【bug】会议来款方式为打包的修改

This commit is contained in:
fengachen
2021-11-03 10:42:55 +08:00
parent ce8128f346
commit ef7b7f964f
3 changed files with 12 additions and 15 deletions
@@ -90,7 +90,7 @@
<a-radio-group v-decorator="['payMode',validatorRules.payMode]" @change="changePayMode">
<a-radio :value="1">汇款</a-radio>
<a-radio :value="2">现场缴费</a-radio>
<a-radio :value="3" disabled>打包</a-radio>
<a-radio :value="3">打包</a-radio>
</a-radio-group>
</a-form-item>
</a-col>
@@ -129,7 +129,7 @@
</a-radio-group>
</a-form-item>
</a-col>
<a-col :xl="12" :sm="24">
<a-col :xl="12" :sm="24" v-if="!isPackBool">
<a-form-item label="缴费凭证" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-image-upload :return-id="true"
v-decorator="['paymentRecord',validatorRules.paymentRecord]"></j-image-upload>
@@ -265,6 +265,8 @@ export default {
},
// 订单后四位显示
onlinePayModeBool: false,
// 是否打包 打包不上传缴费凭证
isPackBool:false,
url: {
add: '/meeting/payMeetingSituation/add'
},
@@ -418,6 +420,12 @@ export default {
} else {
this.onlinePayModeBool = false
}
// 是否打包
if (e.target.value === 3) {
this.isPackBool = true
} else {
this.isPackBool = false
}
}
}
@@ -295,11 +295,9 @@ export default {
* */
changePayMode(e) {
if (e.target.value === 3) {
this.payModeBool = true
this.$emit('isPack', true)
this.payModeBool = false
} else {
this.payModeBool = false
this.$emit('isPack', false)
}
// 缴费方式为线上 要输入订单后四位
if (e.target.value === 2) {
+1 -10
View File
@@ -179,7 +179,6 @@
<template v-if="meetingType === '3' && identifyType !== 1 && identifyType !== null ">
<other-meeting-form ref="formother" :meeting-type="meetingType" :selected-company="selectedCompany"
:meeting-cost-bool="meetingCostBool"
@isPack="isPack"
:identify-type="identifyType" @formData="getFormData"></other-meeting-form>
</template>
<!-- 国际研讨会身份选择嘉宾 并且是VIP-->
@@ -436,15 +435,7 @@ export default {
if (r != null) return unescape(r[2])
return null
},
// 是否打包 打包会议费用为0
isPack(val) {
this.isPackBool = val
if (this.isPackBool) {
this.meetingCostSum = '0.00'
} else {
this.meetingCostSum = this.currentMeetingInfo.meetingCosts
}
},
// 是否打包 打包会议费用为
/*
* 确定
* */