From 849e6c88c594d883ecf7d6024551d83c23c8f718 Mon Sep 17 00:00:00 2001 From: liuye Date: Mon, 27 Jun 2022 17:12:56 +0800 Subject: [PATCH] bug30370 --- src/apps/AppMessageNotification/selectDeptUser.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/AppMessageNotification/selectDeptUser.vue b/src/apps/AppMessageNotification/selectDeptUser.vue index c64ce229..e700a97e 100644 --- a/src/apps/AppMessageNotification/selectDeptUser.vue +++ b/src/apps/AppMessageNotification/selectDeptUser.vue @@ -91,7 +91,7 @@ export default { params: {departmentId, status: 1, cid: corpId} }).then(res => { if (res?.data) { - this.userList = res.data.map(e => ({...e, isChecked: this.isSelected(e.id)})) + this.userList = res.data.map(e => ({...e, isChecked: this.isSelected(e.id, e.corpId)})) } }) },