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.
26 lines
730 B
26 lines
730 B
3 years ago
|
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-script',
|
||
|
templateUrl: './script.component.html',
|
||
|
styleUrls: ['./script.component.scss']
|
||
|
})
|
||
|
export class ScriptComponent implements OnInit {
|
||
|
|
||
|
validateForm!: FormGroup;
|
||
|
constructor(private modal: NzModalRef, private fb: FormBuilder, private http: HttpClient) { }
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
this.validateForm = this.fb.group({
|
||
|
script: [null, [Validators.required]],
|
||
|
});
|
||
|
}
|
||
|
destroyModal(): void {
|
||
|
this.modal.destroy({ data: 'this the result data' });
|
||
|
}
|
||
|
|
||
|
}
|