Compare commits

...

3 Commits

  1. 17
      src/app/system-management/user/user.component.ts

17
src/app/system-management/user/user.component.ts

@ -17,13 +17,16 @@ export class UserComponent implements OnInit {
constructor(private fb: FormBuilder, private modal: NzModalService, private viewContainerRef: ViewContainerRef, private message: NzMessageService, private http: HttpClient, private toTree: TreeService) { } constructor(private fb: FormBuilder, private modal: NzModalService, private viewContainerRef: ViewContainerRef, private message: NzMessageService, private http: HttpClient, private toTree: TreeService) { }
ngOnInit(): void { ngOnInit(): void {
console.log(JSON.parse(sessionStorage.getItem('userdata')).organization.id);
this.validateForm = this.fb.group({ this.validateForm = this.fb.group({
search: [null] search: [null]
}); });
this.getAllUsers() this.getAllOrganization()
// this.getAllUsers()
this.getAllRoles() this.getAllRoles()
this.getAllOrganization()
} }
nzSelectedKeys: any[] = [] nzSelectedKeys: any[] = []
defaultExpandedKeys = []; defaultExpandedKeys = [];
@ -42,6 +45,8 @@ export class UserComponent implements OnInit {
MaxResultCount: String(this.MaxResultCount), MaxResultCount: String(this.MaxResultCount),
OrganizaiotnId: this.OrganizaiotnId OrganizaiotnId: this.OrganizaiotnId
} }
this.http.get('/api/services/app/User/GetAll', { this.http.get('/api/services/app/User/GetAll', {
params: params params: params
}).subscribe((data: any) => { }).subscribe((data: any) => {
@ -91,6 +96,11 @@ export class UserComponent implements OnInit {
}); });
this.nodes = [...this.toTree.toTree(data.result.items)] this.nodes = [...this.toTree.toTree(data.result.items)]
resolve(data) resolve(data)
this.getAllUsers()
console.log(this.nodes);
this.defaultExpandedKeys = [this.nodes[0].id]
this.defaultExpandedKeys = [...this.defaultExpandedKeys]
}) })
}) })
} }
@ -106,7 +116,8 @@ export class UserComponent implements OnInit {
} }
nzClick(event: NzFormatEmitEvent) { nzClick(event: NzFormatEmitEvent) {
console.log(event); console.log(event);
this.OrganizaiotnId = event.node.origin.id
this.getAllUsers()
} }
//新增用户 //新增用户
addUser(): void { addUser(): void {

Loading…
Cancel
Save