fix
This commit is contained in:
@@ -1,18 +1,20 @@
|
||||
<ion-toolbar class="footer-box">
|
||||
<ion-grid>
|
||||
<ion-row>
|
||||
<ion-col class="footer-col" (click)="MenuClick('DASH')" >
|
||||
<ion-icon class="foot-icon" name="albums-outline"></ion-icon>
|
||||
<div class="foot-text">
|
||||
Home
|
||||
</div>
|
||||
</ion-col>
|
||||
|
||||
<ion-col class="footer-col" (click)="MenuClick('SCHEDULE')" >
|
||||
<ion-icon class="foot-icon" name="calendar-outline"></ion-icon>
|
||||
<div class="foot-text">
|
||||
Schedule
|
||||
</div>
|
||||
</ion-col>
|
||||
<ion-col class="footer-col" (click)="MenuClick('ORDERS')" >
|
||||
<ion-icon class="foot-icon" name="albums-outline"></ion-icon>
|
||||
<div class="foot-text">
|
||||
Orders
|
||||
</div>
|
||||
</ion-col>
|
||||
|
||||
<ion-col class="footer-col" (click)="MenuClick('ENCOUNTERS')" >
|
||||
<ion-icon class="foot-icon" name="people-outline"></ion-icon>
|
||||
<div class="foot-text">
|
||||
|
||||
@@ -7,7 +7,7 @@ import { Component, OnInit } from '@angular/core';
|
||||
styleUrls: ['./footer-menu.component.scss'],
|
||||
})
|
||||
export class FooterMenuComponent implements OnInit {
|
||||
|
||||
|
||||
constructor(public router: Router) {}
|
||||
|
||||
ngOnInit() {}
|
||||
@@ -17,8 +17,8 @@ export class FooterMenuComponent implements OnInit {
|
||||
this.router.navigate(['/schedule']);
|
||||
break;
|
||||
|
||||
case 'ORDERS':
|
||||
this.router.navigate(['/schedule']);
|
||||
case 'DASH':
|
||||
this.router.navigate(['/dash']);
|
||||
break;
|
||||
|
||||
case 'ENCOUNTERS':
|
||||
|
||||
Reference in New Issue
Block a user