This commit is contained in:
Olu Amey
2020-11-18 11:42:14 -05:00
parent 15614fe488
commit 95d832fc0c
76 changed files with 1319 additions and 22 deletions
+1 -1
View File
@@ -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>
+19 -4
View File
@@ -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() {
}
}