Guest User

Untitled

a guest
Apr 25th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. ion-grid>
  2. <ion-row no-padding *ngFor="let dado of data" (click)="openInvoice(dado.id)">
  3. <ion-col col col-1 style="font-size:8px;color: #000000;background-color: ">
  4. {{dado.id}}
  5. </ion-col>
  6. <ion-col col col-2 style="font-size:8px;color: #000000">
  7. {{dado.created_at}}
  8. </ion-col>
  9. <ion-col col col-2 style="font-size:8px;color: #000000">
  10. {{dado.name}}
  11. </ion-col>
  12. <ion-col col col-2 style="font-size:8px;color: #000000">
  13. {{dado.total}}
  14. </ion-col>
  15. <ion-col col col-2 style="font-size:8px;color: #000000">
  16. {{dado.payment_method}}
  17. </ion-col>
  18. </ion-row>
  19. </ion-grid>
Add Comment
Please, Sign In to add comment