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.
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
|
|
|
|
@Component({
|
|
|
|
selector: 'app-equipment-info',
|
|
|
|
templateUrl: './equipment-info.component.html',
|
|
|
|
styleUrls: ['./equipment-info.component.scss']
|
|
|
|
})
|
|
|
|
export class EquipmentInfoComponent implements OnInit {
|
|
|
|
validateForm!: FormGroup;
|
|
|
|
constructor(private fb: FormBuilder) { }
|
|
|
|
arr = [1,1,1,1,1,1,1,1,1]
|
|
|
|
ngOnInit(): void {
|
|
|
|
this.validateForm = this.fb.group({
|
|
|
|
search: [null]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
submitForm(){
|
|
|
|
|
|
|
|
}
|
|
|
|
add(){
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|