This commit is contained in:
tiago.kayaya
2021-01-24 23:40:03 +01:00
2 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -76,7 +76,7 @@
<!-- SLIDE -->
<ion-slides class="slide" pager="false" [options]="slideOpts">
<ion-slide *ngFor="let category of searchCategories; index as i;">
<div class="button" (click)="filterDocList(category.Name)" (click)="activeCategoty(i)"[ngClass]="{'active-category': category.Active}">
<div class="button" (click)="filterDocList(category.Name)" (click)="activeCategoty(i)" ><!-- [ngClass]="{'active-category': category.Active}" -->
<p>{{ category.Name }}</p>
<ion-label class="label">{{ category.Qtd }}</ion-label>
</div>
+6 -6
View File
@@ -18,12 +18,12 @@ import { NgModel } from '@angular/forms';
export class SearchPage implements OnInit {
// https params
private searchSubject: string;
private searchDocumentDate: string;
private searchSender: string;
private searchOrganicEntiry: string;
private searchDocTypeId: string;
private ordinance: string;
searchSubject: string;
searchDocumentDate: string;
searchSender: string;
searchOrganicEntiry: string;
searchDocTypeId: string;
ordinance: string;
searchCategories: SearchCategory[];
showSearchDocuments: SearchDocument[];