2021-01-19 16:44:39 +01:00
|
|
|
<ion-header class="main-header">
|
|
|
|
|
|
|
|
|
|
<div class="icon" (click)="close()">
|
|
|
|
|
<ion-icon name="chevron-back" slot="start"></ion-icon>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<ion-toolbar>
|
2021-02-08 17:10:01 +01:00
|
|
|
<ion-title>Entidade Orgânica</ion-title>
|
2021-01-19 16:44:39 +01:00
|
|
|
</ion-toolbar>
|
|
|
|
|
</ion-header>
|
|
|
|
|
|
|
|
|
|
<ion-content>
|
|
|
|
|
<div class="main-container">
|
|
|
|
|
<div class="input-text d-flex ion-align-items-center">
|
|
|
|
|
<ion-input [(ngModel)]='findEntity' class="search-input" type="search" placeholder="Pesquisar" (ngModelChange)="filterContact($event)" ></ion-input>
|
|
|
|
|
</div>
|
|
|
|
|
<ul>
|
|
|
|
|
<li *ngFor="let organicEntity of showOrganicEntities" (click)="selectOrganicEntidy(organicEntity.Description)">
|
|
|
|
|
{{ organicEntity.Description }}
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-content>
|