From 01a4f03b00e673746fd31eb936a0513dd9ca042f Mon Sep 17 00:00:00 2001 From: proudlx <965752348@qq.com> Date: Wed, 21 Apr 2021 15:34:08 +0800 Subject: [PATCH] =?UTF-8?q?'=E5=BC=82=E5=B8=B8=E5=81=A5=E5=BA=B7=E5=91=8A?= =?UTF-8?q?=E7=9F=A5=E5=88=A0=E9=99=A4'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/sale/AttachmentManagement.vue | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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') } }) },