2021-01-19 16:44:39 +01:00
|
|
|
<ion-header class="main-header">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</ion-header>
|
|
|
|
|
|
2021-02-12 16:56:26 +01:00
|
|
|
|
|
|
|
|
<ion-toolbar class="main-header d-flex">
|
|
|
|
|
<div class="d-flex align-center">
|
|
|
|
|
<div class="icon" (click)="close()">
|
|
|
|
|
<ion-icon style="font-size:35px;" src="assets/images/icons-arrow-arrow-left.svg"></ion-icon>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<ion-title>Entidade Orgânica</ion-title>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</ion-toolbar>
|
|
|
|
|
|
|
|
|
|
|
2021-01-19 16:44:39 +01:00
|
|
|
<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>
|