This commit is contained in:
tiago.kayaya
2021-06-10 15:38:08 +01:00
parent 941447a479
commit fa788c425d
13 changed files with 156 additions and 95 deletions
+10 -11
View File
@@ -272,6 +272,16 @@ export class EventsPage implements OnInit {
});
}
goToEvent(eventId:any){
let navigationExtras: NavigationExtras = {
queryParams: {
"eventId": eventId,
"caller": "agenda"
}
};
this.router.navigate(['/home/agenda', eventId, 'events']);
}
async viewEventDetail(eventId:any) {
let classs;
if( window.innerWidth <= 800){
@@ -284,7 +294,6 @@ export class EventsPage implements OnInit {
component: ViewEventPage,
componentProps:{
eventId: eventId,
profile: this.profile,
},
cssClass: classs,
});
@@ -325,16 +334,6 @@ export class EventsPage implements OnInit {
});
}
goToEvent(eventId:any){
let navigationExtras: NavigationExtras = {
queryParams: {
"eventId": eventId,
"caller": "agenda"
}
};
this.router.navigate(['/home/events', eventId, 'events']);
}
goToExpediente(serialNumber:any){
let navigationExtras: NavigationExtras = {
queryParams: {