This commit is contained in:
刘仕伟
2022-06-26 12:34:27 +08:00
parent cf01759c58
commit 37ebac2278

View File

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