解决附件不能删除的bug

This commit is contained in:
季圣华
2022-01-09 22:50:43 +08:00
parent f57a4fa99b
commit fc69e634f8
13 changed files with 65 additions and 13 deletions

View File

@@ -365,7 +365,11 @@
this.accountMoneyList = changeListFmtMinus(this.accountMoneyList)
billMain.accountIdList = this.accountIdList.length>0 ? JSON.stringify(this.accountIdList) : ""
billMain.accountMoneyList = this.accountMoneyList.length>0 ? JSON.stringify(this.accountMoneyList) : ""
billMain.fileName = this.fileList
if(this.fileList && this.fileList.length > 0) {
billMain.fileName = this.fileList
} else {
billMain.fileName = ''
}
if(this.model.id){
billMain.id = this.model.id
}