【bug】 会议费用为0 设置需要发票为 0

This commit is contained in:
fengachen
2021-11-29 15:57:02 +08:00
parent 6526cb5705
commit ff79fcb97e
2 changed files with 8 additions and 0 deletions
+4
View File
@@ -474,6 +474,10 @@ export default {
submitData.identity = values.identity || this.identifyType
// 嘉宾类型
submitData.guestType = values.guestType || this.guestType
// 会议费用为0 参数设置需要发票为0
if(this.meetingCostSum === '0.00' ){
submitData.needInvoice = 0
}
console.log(submitData)
let url = this.url.add
let method = 'post'