mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 13:02:56 +00:00
All GET methods for the module Publications have been integrated.
- Create new folder for publications have been integrated. - Adicional touch to display the data in a more friendly way added.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
<ion-slides>
|
||||
<ion-slide>
|
||||
<div class="swipper-zoom-container">
|
||||
<img src="assets/images/1.jpg">
|
||||
<img src="{{imageUrl}}">
|
||||
</div>
|
||||
</ion-slide>
|
||||
</ion-slides>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { ModalController } from '@ionic/angular';
|
||||
import { ModalController, NavParams } from '@ionic/angular';
|
||||
|
||||
@Component({
|
||||
selector: 'app-image-modal',
|
||||
@@ -7,8 +7,12 @@ import { ModalController } from '@ionic/angular';
|
||||
styleUrls: ['./image-modal.page.scss'],
|
||||
})
|
||||
export class ImageModalPage implements OnInit {
|
||||
imageUrl:string;
|
||||
|
||||
constructor(private modalController: ModalController,) { }
|
||||
constructor(private modalController: ModalController,
|
||||
private navParams: NavParams) {
|
||||
this.imageUrl = this.navParams.get('imageUrl');
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user