add loader

This commit is contained in:
Peter Maquiran
2022-07-15 12:01:14 +01:00
parent 48ef200f69
commit 275bcf0eaf
11 changed files with 28 additions and 5 deletions
@@ -252,12 +252,14 @@ export class OptsExpedientePrPage implements OnInit {
sendExpedienteToPending(){
this.popoverController.dismiss();
const loader = this.toastService.loading()
this.processes.SetTaskToPending(this.task.SerialNumber).subscribe(res=>{
loader.remove()
this.close();
},()=>{
this.toastService._badRequest('Processo não encontrado')
loader.remove()
});
}