fi
This commit is contained in:
@@ -29,7 +29,7 @@
|
||||
Pending Encounter
|
||||
</ion-list-header>
|
||||
|
||||
<ion-item>
|
||||
<ion-item (click)="goPatient()">
|
||||
<ion-avatar slot="start">
|
||||
<img src="./../../assets/imgs/avatar.svg">
|
||||
</ion-avatar>
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { Router, NavigationExtras } from '@angular/router'
|
||||
import { MermsServiceProviderService } from './../providers/merms-service-provider.service';
|
||||
|
||||
|
||||
@Component({
|
||||
@@ -12,21 +13,35 @@ export class MermsDashPage implements OnInit {
|
||||
currentDateFormated: string = '10/10/2020';
|
||||
welcomeName: string = '';
|
||||
|
||||
constructor(private router: Router) {
|
||||
|
||||
dashData: any;
|
||||
|
||||
constructor(
|
||||
private router: Router,
|
||||
private mermsServiceProviderService: MermsServiceProviderService
|
||||
) {
|
||||
this.welcomeName = "Dr. Something"
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
alert(100);
|
||||
}
|
||||
|
||||
getDashData() {
|
||||
|
||||
|
||||
}
|
||||
|
||||
goSettings() {
|
||||
this.router.navigateByUrl('/merms-settings')
|
||||
}
|
||||
goPractice(){
|
||||
goPractice() {
|
||||
this.router.navigateByUrl('/merms-practice')
|
||||
}
|
||||
goHome(){
|
||||
|
||||
goPatient() {
|
||||
this.router.navigateByUrl('/merms-patient')
|
||||
}
|
||||
goHome() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user