diff --git a/src/views/ebiz/sale/AttachmentManagement.vue b/src/views/ebiz/sale/AttachmentManagement.vue index 144f34d1f..368d4a444 100644 --- a/src/views/ebiz/sale/AttachmentManagement.vue +++ b/src/views/ebiz/sale/AttachmentManagement.vue @@ -739,6 +739,24 @@ export default { // return // } // }) + } else if (detail.name == 'fileListNotify') { + this.fileListNotify.forEach((item, index, arr) => { + if (item.name == file.name) { + arr.splice(index,1) + }else{ + return; + } + }) + this.deleteImg(file, 'fileListNotify') + } else if (detail.name == 'fileListNotifyInsured') { + this.fileListNotifyInsured.forEach((item, index, arr) => { + if (item.name == file.name) { + arr.splice(index,1) + }else{ + return; + } + }) + this.deleteImg(file, 'fileListNotifyInsured') } }) },