mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
save
This commit is contained in:
@@ -78,7 +78,7 @@
|
|||||||
class="icon-next"
|
class="icon-next"
|
||||||
slot="end"
|
slot="end"
|
||||||
src="assets/images/icons-arrow-circle-arrow-right.svg"
|
src="assets/images/icons-arrow-circle-arrow-right.svg"
|
||||||
[routerLink]="['/home/gabinete-digital/expediente']"
|
(click)="openExpedientList()"
|
||||||
></ion-icon>
|
></ion-icon>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -319,6 +319,19 @@ export class EventsPage implements OnInit {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async openExpedientList(){
|
||||||
|
const modal = await this.modalController.create({
|
||||||
|
component: ExpedientePage,
|
||||||
|
componentProps:{
|
||||||
|
profile: this.profile,
|
||||||
|
},
|
||||||
|
cssClass: 'modal',
|
||||||
|
backdropDismiss: false
|
||||||
|
});
|
||||||
|
await modal.present();
|
||||||
|
modal.onDidDismiss();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user