fix
This commit is contained in:
@@ -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')
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user