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)}))