fix
This commit is contained in:
@@ -14,14 +14,33 @@
|
|||||||
<!-- Item Dividers in a List -->
|
<!-- Item Dividers in a List -->
|
||||||
<ion-list>
|
<ion-list>
|
||||||
|
|
||||||
<ion-item><ion-label>Reason:{{reason}}</ion-label></ion-item>
|
<ion-item>
|
||||||
<ion-item><ion-label>{{appt}} - {{gender}} [{{age}}]</ion-label></ion-item>
|
<ion-label>Reason:{{reason}}</ion-label>
|
||||||
|
</ion-item>
|
||||||
|
<ion-item>
|
||||||
|
<ion-label>{{appt}} - {{gender}} [{{age}}]</ion-label>
|
||||||
|
</ion-item>
|
||||||
|
<ion-item>
|
||||||
|
|
||||||
|
<ion-grid>
|
||||||
|
<ion-row>
|
||||||
|
<ion-col>
|
||||||
|
<img src="{{profile_picture}}" />
|
||||||
|
</ion-col>
|
||||||
|
<ion-col>
|
||||||
|
<ion-button color="success" expand="full">Video ??</ion-button>
|
||||||
|
|
||||||
|
</ion-col>
|
||||||
|
|
||||||
|
</ion-row>
|
||||||
|
</ion-grid>
|
||||||
|
</ion-item>
|
||||||
<ion-item>
|
<ion-item>
|
||||||
<ion-grid>
|
<ion-grid>
|
||||||
<ion-row>
|
<ion-row>
|
||||||
<ion-col>
|
<ion-col>
|
||||||
|
|
||||||
<ion-button expand="full" >Call ??</ion-button>
|
<ion-button expand="full">Call ??</ion-button>
|
||||||
|
|
||||||
|
|
||||||
</ion-col>
|
</ion-col>
|
||||||
@@ -30,25 +49,21 @@
|
|||||||
|
|
||||||
</ion-col>
|
</ion-col>
|
||||||
<ion-col>
|
<ion-col>
|
||||||
<ion-button expand="full" >Chat ??</ion-button>
|
<ion-button expand="full">Chat ??</ion-button>
|
||||||
</ion-col>
|
</ion-col>
|
||||||
</ion-row>
|
</ion-row>
|
||||||
</ion-grid>
|
</ion-grid>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
<ion-item>
|
<ion-item>
|
||||||
<ion-label>Notes</ion-label>
|
<ion-label>Notes</ion-label>
|
||||||
<ion-textarea rows="6" cols="20" placeholder="Enter any notes here..."></ion-textarea>
|
<ion-textarea rows="6" cols="20" placeholder="Enter any notes here..."></ion-textarea>
|
||||||
|
|
||||||
|
|
||||||
</ion-item>
|
</ion-item>
|
||||||
|
|
||||||
|
|
||||||
</ion-list>
|
</ion-list>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</ion-content>
|
</ion-content>
|
||||||
|
|
||||||
|
|
||||||
@@ -59,7 +74,7 @@
|
|||||||
<ion-row>
|
<ion-row>
|
||||||
<ion-col>
|
<ion-col>
|
||||||
<div>
|
<div>
|
||||||
<ion-icon name="home" (click)="goHome()"></ion-icon>
|
<ion-icon name="home" (click)="goHome()"></ion-icon>
|
||||||
</div>
|
</div>
|
||||||
</ion-col>
|
</ion-col>
|
||||||
<ion-col>
|
<ion-col>
|
||||||
|
|||||||
@@ -22,6 +22,8 @@ export class MermsPatientPage implements OnInit {
|
|||||||
appt : string ='';
|
appt : string ='';
|
||||||
gender : string ='';
|
gender : string ='';
|
||||||
age : number =0;
|
age : number =0;
|
||||||
|
profile_picture:string ="../../assets/imgs/merms-signup.jpg";
|
||||||
|
|
||||||
|
|
||||||
constructor(public navCtrl: NavController, private router: Router, private route: ActivatedRoute) {
|
constructor(public navCtrl: NavController, private router: Router, private route: ActivatedRoute) {
|
||||||
console.log('-----------------------------xxxx-----------------------------');
|
console.log('-----------------------------xxxx-----------------------------');
|
||||||
@@ -38,6 +40,7 @@ export class MermsPatientPage implements OnInit {
|
|||||||
this.appt = params.appt;
|
this.appt = params.appt;
|
||||||
this.patient_id = params.id;
|
this.patient_id = params.id;
|
||||||
this.firstname = params.firstname;
|
this.firstname = params.firstname;
|
||||||
|
this.profile_picture = "../../assets/imgs/avatar"+this.gender+ ".png";
|
||||||
|
|
||||||
// this.route.queryParams.subscribe(params => {
|
// this.route.queryParams.subscribe(params => {
|
||||||
// console.log(params);
|
// console.log(params);
|
||||||
|
|||||||
Reference in New Issue
Block a user