From a079bfa0d3c6fcd157072e3f5362c7289b9624f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=9D=E5=85=88=E7=91=9E?= <1490493387@qq.com> Date: Thu, 26 May 2022 09:56:08 +0800 Subject: [PATCH] =?UTF-8?q?fix(Perm.vue):=20=E4=BF=AE=E5=A4=8Dts=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E8=AD=A6=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Former-commit-id: 816e54e3743decead1ce4a92578b8de2ef1aefda --- src/views/system/role/components/Perm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/system/role/components/Perm.vue b/src/views/system/role/components/Perm.vue index 35458c6c..380b9d0d 100644 --- a/src/views/system/role/components/Perm.vue +++ b/src/views/system/role/components/Perm.vue @@ -92,7 +92,7 @@ const state = reactive({ const { permissionOptions, isIndeterminate, checkAll } = toRefs(state); -function handleCheckAllChange(checked: boolean) { +function handleCheckAllChange(checked: any) { state.isIndeterminate = false; if (checked) { state.permissionOptions.map(item => (item.checked = true));