From a4647a05d4ce06855ff3a845998e4096e097cd41 Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Thu, 16 Jul 2020 09:18:05 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E6=AD=A3]=20=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E5=86=85=E7=BD=AE=E6=96=87=E4=BB=B6=E5=A4=B9=20BUG=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/ui/all-file/all-file.component.ts | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/app/ui/all-file/all-file.component.ts b/src/app/ui/all-file/all-file.component.ts index 70e9687..3e2e9c2 100644 --- a/src/app/ui/all-file/all-file.component.ts +++ b/src/app/ui/all-file/all-file.component.ts @@ -706,6 +706,8 @@ export class AllFileComponent { }) } + + isTrueDelete:any = ['基础知识','装备','技战术','消防设施','资料库']; //匹配内置一级目录 是否被选择删除 // 删除文件 deleteFiles(){ @@ -713,17 +715,15 @@ export class AllFileComponent { let isDelete = confirm('您确定要删除选中文件吗') let arr = [] if (isDelete) { - let notDelete = [] //所有要删除文件 的 一级目录 let arrList = [] //匹配到 禁止删除的 目录 this.selection.selected.forEach((element)=>{ let data = element.key.split("/"); - notDelete.push(data[2]) + this.isTrueDelete.forEach(elements => { + if (elements==data[data.length-2] && data.length-2==2) { + arrList.push('true') + } + }); }) - this.isTrueDelete.forEach(element => { - notDelete.forEach(elements=>{ - if (element==elements) { arrList.push('true') } - }) - }); if (arrList.length) { const config = new MatSnackBarConfig(); config.verticalPosition = 'top'; @@ -774,9 +774,8 @@ export class AllFileComponent { }) - - }); + } // if arrList }