27 lines
833 B
27 lines
833 B
import { Component, OnInit } from '@angular/core'; |
|
import { NzModalRef } from 'ng-zorro-antd/modal'; |
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
|
import { HttpClient } from '@angular/common/http'; |
|
@Component({ |
|
selector: 'app-addor', |
|
templateUrl: './addor.component.html', |
|
styleUrls: ['./addor.component.scss'] |
|
}) |
|
export class AddorComponent implements OnInit { |
|
|
|
validateForm!: FormGroup; |
|
constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient) { } |
|
|
|
ngOnInit(): void { |
|
this.validateForm = this.fb.group({ |
|
name: [null, [Validators.required]], |
|
// code: [null, [Validators.required]], |
|
isGasStation: [false], |
|
isParticipationAudit: [true] |
|
}); |
|
} |
|
destroyModal(): void { |
|
this.modal.destroy({ data: 'this the result data' }); |
|
} |
|
|
|
}
|
|
|