2021-05-03 20:02:07 +01:00
|
|
|
<ion-header class="ion-no-border">
|
|
|
|
|
<div class="header-content">
|
|
|
|
|
<div class="header-icon-left">
|
|
|
|
|
<button class="btn-no-color cursor-pointer" (click)="close()">
|
|
|
|
|
<ion-icon src="assets/images/icons-arrow-arrow-left.svg"></ion-icon>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="header-title">
|
2021-05-12 09:55:17 +01:00
|
|
|
<label>Adicionar coméntário</label>
|
2021-05-03 20:02:07 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-header>
|
|
|
|
|
|
|
|
|
|
<ion-content>
|
|
|
|
|
<ion-item lines="none">
|
2021-05-12 09:55:17 +01:00
|
|
|
<ion-textarea [(ngModel)]="emendMessage" rows="4" cols="20" placeholder="Adicionar um comentário para execução..."></ion-textarea>
|
2021-05-03 20:02:07 +01:00
|
|
|
</ion-item>
|
|
|
|
|
</ion-content>
|
|
|
|
|
<ion-footer>
|
|
|
|
|
<div class="buttons width-100">
|
2021-05-12 09:55:17 +01:00
|
|
|
<button class="btn-cancel cursor-pointer" shape="round" (click)="close()">Cancelar</button>
|
2021-05-03 20:02:07 +01:00
|
|
|
<button class="btn-ok cursor-pointer" shape="round" (click)="save()">Gravar</button>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-footer>
|