|
|
|
@ -42,7 +42,7 @@ export class UserComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
nzSelectedKeys: any[] = [] |
|
|
|
|
defaultExpandedKeys = []; |
|
|
|
|
IsContainsChildren=true |
|
|
|
|
IsContainsChildren = true |
|
|
|
|
searchValue = ''; |
|
|
|
|
totalCount: string |
|
|
|
|
//获取所有用户
|
|
|
|
@ -50,7 +50,7 @@ export class UserComponent implements OnInit {
|
|
|
|
|
usersNum: string |
|
|
|
|
OrganizationUnitId |
|
|
|
|
loading: boolean; |
|
|
|
|
organizationsList=[] |
|
|
|
|
organizationsList = [] |
|
|
|
|
getAllUsers() { |
|
|
|
|
this.loading = true |
|
|
|
|
let params = { |
|
|
|
@ -105,8 +105,7 @@ export class UserComponent implements OnInit {
|
|
|
|
|
this.http.get('/api/services/app/Organization/GetAll', { |
|
|
|
|
params: params |
|
|
|
|
}).subscribe(async (data: any) => { |
|
|
|
|
console.log(data,80801); |
|
|
|
|
await this.getuser(data.result.items)
|
|
|
|
|
await this.getuser(data.result.items) |
|
|
|
|
resolve(data) |
|
|
|
|
this.getAllUsers() |
|
|
|
|
}) |
|
|
|
@ -121,36 +120,31 @@ export class UserComponent implements OnInit {
|
|
|
|
|
params: params |
|
|
|
|
}).subscribe((data: any) => { |
|
|
|
|
resolve(data) |
|
|
|
|
console.log(data,70); |
|
|
|
|
|
|
|
|
|
this.organizationsList = data.result |
|
|
|
|
|
|
|
|
|
const arrs = e.map(item => { |
|
|
|
|
const data = this.organizationsList.find(i => item.id == i.organizationId) |
|
|
|
|
return { |
|
|
|
|
...item, |
|
|
|
|
// ...data,
|
|
|
|
|
products: data ? data : false |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (let index = 0; index < arrs.length; index++) { |
|
|
|
|
if(arrs[index].products){ |
|
|
|
|
arrs[index].title=arrs[index].displayName |
|
|
|
|
}else{ |
|
|
|
|
arrs[index].title=arrs[index].displayName |
|
|
|
|
} |
|
|
|
|
arrs[index].title = arrs[index].displayName |
|
|
|
|
arrs[index].key = arrs[index].id |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.nodes = [...this.toTree.toTree(arrs)] |
|
|
|
|
this.defaultExpandedKeys = [this.nodes[0].id] |
|
|
|
|
this.nzSelectedKeys = [this.nodes[0].id] |
|
|
|
|
this.OrganizationUnitId = [this.nodes[0].id] |
|
|
|
|
console.log(this.nodes,9000); |
|
|
|
|
console.log(this.nodes, 9000); |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
xxx(node){ |
|
|
|
|
console.log(node) |
|
|
|
|
} |
|
|
|
|
//搜索框提交
|
|
|
|
|
submitForm(): void { |
|
|
|
|
for (const i in this.validateForm.controls) { |
|
|
|
@ -302,7 +296,7 @@ export class UserComponent implements OnInit {
|
|
|
|
|
let url |
|
|
|
|
if (this.level == 1) { |
|
|
|
|
type ? url = '/api/services/app/User/Activate' : url = '/api/services/app/User/DeActivate' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
type ? url = '/api/services/app/EdittingUser/Activate' : url = '/api/services/app/EdittingUser/DeActivate' |
|
|
|
|
} |
|
|
|
|