Guest User

Untitled

a guest
Jan 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <ion-content *ngIf="showInfoAdicional">
  2. <ion-list>
  3. <ion-item class="item item-text-wrap" *ngFor="let data of ia">
  4. <h3 text-wrap class="h" ><!--<strong>Información:</strong>--> {{data.informacionAdicional}}</h3>
  5. </ion-item>
  6. </ion-list>
  7. <p>
  8. <img src="{{rutabanner}}">
  9. </p>
  10. </ion-content>
  11.  
  12. this.showInfoAdicional = true;
  13. this.infoAdicional.forEach(ele =>{
  14. //console.log(ele);
  15. this.ia = [];
  16. ele.forEach(data =>{
  17. if(this.idCiudadGlobal == data.idCiudad){
  18. //console.log(data)
  19.  
  20. this.ia.push(data);
  21. }
  22. })
  23. })
Add Comment
Please, Sign In to add comment