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