Advertisement
multiarts

Cart

Sep 11th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.77 KB | None | 0 0
  1. <ion-header>
  2.  
  3.   <ion-navbar>
  4.     <ion-title>Carrinho</ion-title>
  5.   </ion-navbar>
  6.  
  7. </ion-header>
  8.  
  9.  
  10. <ion-content full>
  11.   <div *ngIf="isEmptyCart" class="empty-cart">
  12.     <div class="empty-results">
  13.       <h3 text-center>
  14.         <ion-icon name="cart"></ion-icon>
  15.       </h3>
  16.       <p text-center>
  17.         Seu carrinho está vazio.
  18.       </p>
  19.     </div>
  20.   </div>
  21.  
  22.   <div *ngIf="!isEmptyCart" class="cart-itm-wrap">
  23.  
  24.     <ion-card *ngFor="let itm of cartItems; let i = index">
  25.       <ion-card-content>
  26.         <ion-row>
  27.           <ion-col col-7>
  28.             <h3 style="margin: 7px" text-left>{{itm.name}}</h3>
  29.  
  30.             <div class="itm-footer">
  31.               <span class="remove" (click)="removeItem(itm.product_id)">
  32.                 <ion-icon name="trash"></ion-icon>
  33.                 {{i}}
  34.               </span>
  35.  
  36.               <span class="price">
  37.                {{itm.price | currency:'BRL':symbol:'1.2-2'}} x {{itm.count}} = {{itm.totalPrice | currency:'BRL':symbol:'1.2-2'}}
  38.               </span>
  39.             </div>
  40.           </ion-col>
  41.           <ion-col>
  42.             <ion-item>
  43.               <ion-avatar>
  44.                 <img style="float: right" src="{{itm.thumb}}">
  45.               </ion-avatar>
  46.             </ion-item>
  47.             <p text-right>
  48.               Qtd: {{itm.count}}
  49.             </p>
  50.           </ion-col>
  51.  
  52.         </ion-row>
  53.       </ion-card-content>
  54.     </ion-card>
  55.     <button ion-button block round raised (click)="removeAll()">Remover tudo</button>
  56.   </div>
  57. </ion-content>
  58.  
  59. <ion-footer *ngIf="!isEmptyCart" class="single-footer">
  60.   <button ion-button full color="secondary" (click)="checkOut()" [disabled]="isEmptyCart">
  61.     {{totalAmount | currency:'BRL':symbol:'1.2-2'}} &nbsp; &nbsp; Finalizar compra
  62.   </button>
  63. </ion-footer>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement