1//arquivo separados
2let campos = [{value: this.date, label: "Data"}, {value: this.custo_valor, label: "Custo"}, {value: this.vei_id.id, label: "veículo"}, {value: this.tipo_id.id, label: "condutor"}, ]
3 if(this.util.validacao(campos))
4//Serviço(utilities)
5public validacao(campos)
6 {
7 let retorno = true;
8 campos.forEach((val, i)=>
9 {
10 if(!val.value)
11 {
12 this.toastr.warning("Preecha o campo " + val.label + "!");
13 retorno = false;
14 }
15 });
16 return retorno;
17 }
18