From 37ebac2278c334ffb2e0b4fa7e4ddca5d06dea23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E4=BB=95=E4=BC=9F?= <499672082@qq.com> Date: Sun, 26 Jun 2022 12:34:27 +0800 Subject: [PATCH] bug --- src/apps/AppDataScreening/orgList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/AppDataScreening/orgList.vue b/src/apps/AppDataScreening/orgList.vue index 4b1f9862..da764b3b 100644 --- a/src/apps/AppDataScreening/orgList.vue +++ b/src/apps/AppDataScreening/orgList.vue @@ -83,7 +83,7 @@ export default { this.treeList = this.allData.filter(e => e.parentid == departmentId && e.corpId == corpId) this.userList = [] this.$http.post(`/app/wxcp/wxuser/listByDeptId`, null, { - params: {departmentId, status: 1, cip: corpId} + params: {departmentId, status: 1, cid: corpId} }).then(res => { if (res?.data) { this.userList = res.data.map(e => ({...e, isChecked: this.isSelected(e.id)}))