You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.7 KiB
54 lines
1.7 KiB
import { Component, OnInit, Input } from '@angular/core'; |
|
import { NzModalRef } from 'ng-zorro-antd/modal'; |
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
|
import { HttpClient } from '@angular/common/http'; |
|
import { TreeService } from 'src/app/service/tree.service'; |
|
@Component({ |
|
selector: 'app-adduser', |
|
templateUrl: './adduser.component.html', |
|
styleUrls: ['./adduser.component.scss'] |
|
}) |
|
export class AdduserComponent implements OnInit { |
|
|
|
@Input() title?: string; |
|
@Input() subtitle?: string; |
|
validateForm!: FormGroup; |
|
constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private toTree: TreeService) { } |
|
|
|
ngOnInit(): void { |
|
this.validateForm = this.fb.group({ |
|
account: [null, [Validators.required]], |
|
name: [null, [Validators.required]], |
|
organization: [null, [Validators.required]], |
|
role: [null, [Validators.required]], |
|
phonenum: [null, [Validators.required]] |
|
}); |
|
|
|
this.getAllRoles() |
|
this.getAllOrganization() |
|
} |
|
destroyModal(): void { |
|
this.modal.destroy({ data: 'this the result data' }); |
|
} |
|
|
|
listOfData: any[] = []; |
|
|
|
//获取角色列表 |
|
getAllRoles() { |
|
this.http.get('/api/services/app/Role/GetAll').subscribe((data: any) => { |
|
console.log('角色列表', data.result.items) |
|
this.listOfData = data.result.items |
|
}) |
|
} |
|
//获取所有组织机构 |
|
nodes:any = [] |
|
getAllOrganization() { |
|
this.http.get('/api/services/app/Organization/GetAll').subscribe((data: any) => { |
|
data.result.items.forEach(element => { |
|
element.key = element.code |
|
element.title = element.displayName |
|
}); |
|
this.nodes = [...this.toTree.toTree(data.result.items)] |
|
}) |
|
} |
|
}
|
|
|