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()">
|
2021-10-25 13:21:48 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'default' " style="font-size:35px;" src="assets/images/icons-arrow-arrow-left.svg"></ion-icon>
|
2022-10-18 14:51:24 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'doneIt' " src="assets/images/theme/doneIt/icons-calendar-arrow-left.svg"></ion-icon>
|
2021-10-25 13:21:48 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'gov' " style="font-size:35px;" src="assets/images/theme/gov/icons-calendar-arrow-left.svg"></ion-icon>
|
2021-02-12 16:56:26 +01:00
|
|
|
</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">
|
2021-06-03 13:33:39 +01:00
|
|
|
<ion-input [(ngModel)]='findEntity' class="search-input" type="search" placeholder="Pesquisar" (ngModelChange)="filterContact()" ></ion-input>
|
2021-01-19 16:44:39 +01:00
|
|
|
</div>
|
|
|
|
|
<ul>
|
2023-08-11 16:14:25 +01:00
|
|
|
<li *ngFor="let organicEntity of showOrganicEntities" (click)="selectOrganicEntidy(organicEntity)">
|
2021-01-19 16:44:39 +01:00
|
|
|
{{ organicEntity.Description }}
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-content>
|