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; }