mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
67 lines
1.8 KiB
HTML
67 lines
1.8 KiB
HTML
<ion-header class="ion-no-border">
|
|
<!-- <app-header > </app-header> -->
|
|
</ion-header>
|
|
|
|
|
|
<ion-header class="ion-no-border header-2">
|
|
<app-btn-modal-dismiss (click)="goBack()" ></app-btn-modal-dismiss>
|
|
<div class="title">
|
|
<div class="thetitle"><ion-label >Pendentes</ion-label></div>
|
|
<div class="theicon btn-refresh">
|
|
<mat-form-field class="task-filter-input" appearance="none" color="ion-color-secondary" placeholder="Selecione agenda">
|
|
<mat-select [(value)]="filterName">
|
|
|
|
<mat-option value="Para hoje" >
|
|
Para hoje
|
|
</mat-option>
|
|
|
|
<mat-option value="Novos" >
|
|
Novos
|
|
</mat-option>
|
|
|
|
<mat-option value="Lidos" >
|
|
Lidos
|
|
</mat-option>
|
|
|
|
<mat-option value="Não lidos" >
|
|
Não lidos
|
|
</mat-option>
|
|
|
|
|
|
<mat-option value="OverdueTasks">
|
|
Em atraso
|
|
</mat-option>
|
|
|
|
<mat-option value="Todos" >
|
|
Todos
|
|
</mat-option>
|
|
|
|
|
|
</mat-select>
|
|
</mat-form-field>
|
|
<button class="btn-no-color" (click)="doRefresh($event)">
|
|
<ion-icon slot="end" class="title-icon font-awesome" name="reload-circle"></ion-icon>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</ion-header>
|
|
|
|
<ion-content style="background-color: white;">
|
|
|
|
<ion-refresher name="refresher" slot="fixed" (ionRefresh)="doRefresh($event)">
|
|
<ion-refresher-content
|
|
pullingIcon="chevron-down-circle-outline"
|
|
pullingText="deslize para actualizar"
|
|
refreshingSpinner="circles"
|
|
refreshingText="A actualizar...">
|
|
</ion-refresher-content>
|
|
</ion-refresher>
|
|
|
|
<app-task-list class="height-100"
|
|
[taskList] = pendentesstore.list
|
|
[skeletonLoader] = skeletonLoader
|
|
(viewTaskDetail)="viewTaskDetails($event)"
|
|
> </app-task-list>
|
|
|
|
</ion-content>
|