From 904bca110bbd3cd7775c7dcbfabf0447f03e4c91 Mon Sep 17 00:00:00 2001 From: xufenglei <xufenglei> Date: Mon, 08 Jan 2018 11:55:21 +0800 Subject: [PATCH] 账户 管理 --- src/app/routes/users/installer/installer.component.ts | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/src/app/routes/users/installer/installer.component.ts b/src/app/routes/users/installer/installer.component.ts index 3be1bb8..d1cacb7 100644 --- a/src/app/routes/users/installer/installer.component.ts +++ b/src/app/routes/users/installer/installer.component.ts @@ -109,7 +109,11 @@ checkAll(value: boolean) { this.curRows.forEach(i => { - i.checked = value; + if (i.isDelete == '1') { + i.checked = false; + } else { + i.checked = value; + } }); this.refreshStatus(); } -- Gitblit v1.8.0