2022-02-16 15:52:59 +01:00
|
|
|
|
2021-03-24 11:01:51 +01:00
|
|
|
<ion-tabs class="tab">
|
|
|
|
|
<ion-tab-bar class="bottoms" slot="bottom">
|
2022-03-28 13:34:01 +01:00
|
|
|
|
2022-03-29 16:49:51 +01:00
|
|
|
<ion-tab-button *ngIf="p.userPermission([permissionList.Agenda]) || p.userPermission([permissionList.Gabinete])" tab="events" [class.active]="pathname === '/home/events'">
|
2022-03-28 13:34:01 +01:00
|
|
|
<!-- <ion-icon name="home"></ion-icon> -->
|
|
|
|
|
<ion-icon *ngIf="pathname != '/home/events'" class="nav-icon" src="assets/images/icons-nav-home.svg"></ion-icon>
|
|
|
|
|
<ion-icon *ngIf="pathname == '/home/events'" class="nav-icon" src="assets/images/nav-hover/icons-nav-home-active.svg"></ion-icon>
|
|
|
|
|
<!-- <ion-badge color="danger">{{toDayEventStorage.eventsList.length + expedienteGdStore.count}}</ion-badge> -->
|
|
|
|
|
<ion-label>Início</ion-label>
|
|
|
|
|
</ion-tab-button>
|
|
|
|
|
|
2022-03-28 15:46:07 +01:00
|
|
|
<ion-tab-button *ngIf="p.userPermission([permissionList.Agenda])" tab="agenda" [class.active]="pathname === '/home/agenda' ">
|
2022-03-28 13:34:01 +01:00
|
|
|
<!-- <ion-icon name="calendar"></ion-icon> -->
|
|
|
|
|
<ion-icon *ngIf="pathname != '/home/agenda'" class="nav-icon" src="assets/images/icons-nav-calendar.svg"></ion-icon>
|
|
|
|
|
<ion-icon *ngIf="pathname == '/home/agenda'" class="nav-icon" src="assets/images/nav-hover/icons-nav-agenda-active.svg"></ion-icon>
|
|
|
|
|
<ion-label style="margin-bottom: 2px;" class="overflow-visible">Agenda</ion-label>
|
|
|
|
|
</ion-tab-button>
|
|
|
|
|
|
2022-03-28 15:46:07 +01:00
|
|
|
<ion-tab-button *ngIf="p.userPermission([permissionList.Gabinete])" (click)="goto('/home/gabinete-digital')" [class.active]="pathname === '/home/gabinete-digital' ">
|
2022-03-28 13:34:01 +01:00
|
|
|
<!-- <ion-icon name="file-tray-stacked"></ion-icon> -->
|
|
|
|
|
<ion-icon *ngIf="pathname != '/home/gabinete-digital'" class="nav-icon" src="assets/images/icons-nav-gabinete-inactive.svg"></ion-icon>
|
|
|
|
|
<ion-icon *ngIf="pathname == '/home/gabinete-digital'" class="nav-icon" src="assets/images/nav-hover/icons-nav-gabinete-active.svg"></ion-icon>
|
|
|
|
|
<!-- <ion-badge color="danger" *ngIf="!p.userRole(['PR'])" >{{ documentCounterService.mdTotalDocument }}</ion-badge>
|
|
|
|
|
<ion-badge color="danger" *ngIf="p.userRole(['PR'])" >{{ documentCounterService.prTotalDocument }}</ion-badge> -->
|
|
|
|
|
<ion-label>Gabinete</ion-label>
|
|
|
|
|
</ion-tab-button>
|
2022-03-28 15:46:07 +01:00
|
|
|
|
|
|
|
|
<ion-tab-button *ngIf="p.userPermission([permissionList.Actions])" tab="publications" [class.active]="pathname === '/home/publications' ">
|
2022-03-28 13:34:01 +01:00
|
|
|
<ion-icon *ngIf="pathname != '/home/publications'" class="nav-icon" src="assets/images/icons-nav-actions.svg"></ion-icon>
|
|
|
|
|
<ion-icon *ngIf="pathname == '/home/publications'" class="nav-icon" src="assets/images/nav-hover/icons-nav-actions-active.svg"></ion-icon>
|
|
|
|
|
<ion-label style="margin-bottom: 2px;" class="overflow-visible">Ações</ion-label>
|
|
|
|
|
</ion-tab-button>
|
|
|
|
|
|
2022-03-28 15:46:07 +01:00
|
|
|
<ion-tab-button *ngIf="p.userPermission([permissionList.Actions])" tab="chat" [class.active]="pathname === '/home/chat' ">
|
2022-03-28 13:34:01 +01:00
|
|
|
<ion-icon *ngIf="pathname != '/home/chat'" class="nav-icon" src="assets/images/icons-nav-chat-inactive.svg"></ion-icon>
|
|
|
|
|
<ion-icon *ngIf="pathname == '/home/chat'" class="nav-icon" src="assets/images/nav-hover/icons-nav-chat-active.svg"></ion-icon>
|
|
|
|
|
<ion-label>Chat</ion-label>
|
|
|
|
|
</ion-tab-button>
|
2022-01-04 15:34:03 +01:00
|
|
|
|
2021-03-24 11:01:51 +01:00
|
|
|
</ion-tab-bar>
|
2021-03-25 16:04:07 +01:00
|
|
|
</ion-tabs>
|
2021-07-22 10:21:51 +01:00
|
|
|
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">
|