This commit is contained in:
Olu Amey
2020-11-28 20:55:17 -05:00
parent a889f5b10c
commit 4511931bb3
2 changed files with 48 additions and 5 deletions
+13 -3
View File
@@ -1,4 +1,11 @@
import { Component, OnInit } from '@angular/core';
import { Router, NavigationExtras } from '@angular/router'
import {
NavController,
AlertController,
LoadingController,
} from '@ionic/angular'
@Component({
selector: 'app-merms-patient',
@@ -6,12 +13,15 @@ import { Component, OnInit } from '@angular/core';
styleUrls: ['./merms-patient.page.scss'],
})
export class MermsPatientPage implements OnInit {
constructor() { }
patient_name:string ="Selected Patient";
constructor(public navCtrl: NavController,private router: Router) { }
ngOnInit() {
}
goBack(){
}
goHome(){
this.router.navigateByUrl('/merms-dash')
}
}