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.
35 lines
1.0 KiB
35 lines
1.0 KiB
import { Component, OnInit, Input,ViewChild } 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'; |
|
import { NzTreeComponent } from 'ng-zorro-antd/tree'; |
|
@Component({ |
|
selector: 'app-addrole', |
|
templateUrl: './addrole.component.html', |
|
styleUrls: ['./addrole.component.scss'] |
|
}) |
|
export class AddroleComponent implements OnInit { |
|
|
|
@ViewChild('nzTreeComponent', { static: false }) nzTreeComponent!: NzTreeComponent; |
|
|
|
validateForm!: FormGroup; |
|
constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient, private toTree: TreeService) { } |
|
|
|
|
|
ngOnInit(): void { |
|
this.validateForm = this.fb.group({ |
|
name: [null, [Validators.required]] |
|
}); |
|
} |
|
|
|
totalCount |
|
|
|
destroyModal(): void { |
|
this.modal.destroy({ data: 'this the result data' }); |
|
} |
|
optionList = []; |
|
isLoading = false; |
|
|
|
|
|
}
|
|
|