|
|
|
@ -17,16 +17,11 @@ export class UserComponent implements OnInit {
|
|
|
|
|
constructor(private fb: FormBuilder, private modal: NzModalService, private viewContainerRef: ViewContainerRef, private message: NzMessageService, private http: HttpClient, private toTree: TreeService) { } |
|
|
|
|
|
|
|
|
|
ngOnInit(): void { |
|
|
|
|
console.log(JSON.parse(sessionStorage.getItem('userdata')).organization.id); |
|
|
|
|
|
|
|
|
|
this.validateForm = this.fb.group({ |
|
|
|
|
search: [null] |
|
|
|
|
}); |
|
|
|
|
this.getAllOrganization() |
|
|
|
|
// this.getAllUsers()
|
|
|
|
|
|
|
|
|
|
this.getAllRoles() |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
nzSelectedKeys: any[] = [] |
|
|
|
|
defaultExpandedKeys = []; |
|
|
|
@ -134,7 +129,6 @@ export class UserComponent implements OnInit {
|
|
|
|
|
subtitle: '' |
|
|
|
|
}, |
|
|
|
|
nzOnOk: async () => { |
|
|
|
|
// console.log(instance.validateForm.value)
|
|
|
|
|
if (instance.validateForm.valid) { |
|
|
|
|
await new Promise(resolve => { |
|
|
|
|
let body = { |
|
|
|
@ -153,7 +147,6 @@ export class UserComponent implements OnInit {
|
|
|
|
|
return true |
|
|
|
|
}, err => { |
|
|
|
|
resolve(err) |
|
|
|
|
console.log(4444, err) |
|
|
|
|
this.message.create('warning', err.error.error.message); |
|
|
|
|
return false |
|
|
|
|
}) |
|
|
|
@ -166,7 +159,6 @@ export class UserComponent implements OnInit {
|
|
|
|
|
}); |
|
|
|
|
const instance = modal.getContentComponent(); |
|
|
|
|
modal.afterOpen.subscribe(() => console.log('[afterOpen] emitted!')); |
|
|
|
|
// Return a result when closed
|
|
|
|
|
modal.afterClose.subscribe(result => console.log('[afterClose] The result is:', result)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -179,7 +171,6 @@ export class UserComponent implements OnInit {
|
|
|
|
|
nzViewContainerRef: this.viewContainerRef, |
|
|
|
|
nzWidth: 450, |
|
|
|
|
nzMaskClosable: false, |
|
|
|
|
// nzOkLoading: true,
|
|
|
|
|
nzComponentParams: { |
|
|
|
|
data: data, |
|
|
|
|
listOfData: this.listOfData, |
|
|
|
|