|
|
|
@@ -84,23 +84,15 @@ |
|
|
|
<header> |
|
|
|
APPLY PROMOCODE <button (click)="show_promocodes = false"> Done </button> |
|
|
|
</header> |
|
|
|
<ion-list> |
|
|
|
<ion-item (click)="selected_promocode = 'SAVE100'"> |
|
|
|
<ion-radio slot="start" [checked]="selected_promocode === 'SAVE100'"></ion-radio> |
|
|
|
<ion-list *ngFor="let promoCodes of mallPromoCodes"> |
|
|
|
<ion-item (click)="selected_promocode = code.offersCode" |
|
|
|
*ngFor="let code of promoCodes"> |
|
|
|
<ion-radio slot="start" [checked]="selected_promocode === code.offersCode"></ion-radio> |
|
|
|
<ion-label class="ion-text-wrap"> |
|
|
|
<div class="heading"> Upto ₹ 100 Offer </div> |
|
|
|
<div class="code"> Promocode: <span> SAVE100 </span> </div> |
|
|
|
<p> Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolore, aliquid quod omnis sed voluptatem, eos sapiente quaerat, consequatur neque beatae architecto commodi! Debitis, qui eum iure perspiciatis aperiam cumque voluptatum? </p> |
|
|
|
<a> Terms & Condition </a> |
|
|
|
</ion-label> |
|
|
|
</ion-item> |
|
|
|
<ion-item (click)="selected_promocode = 'SAVE10PER'"> |
|
|
|
<ion-radio slot="start" [checked]="selected_promocode === 'SAVE10PER'"></ion-radio> |
|
|
|
<ion-label class="ion-text-wrap"> |
|
|
|
<div class="heading"> Upto ₹ 10 Percert Offer </div> |
|
|
|
<div class="code"> Promocode: <span> SAVE10PER </span> </div> |
|
|
|
<p> Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolore, aliquid quod omnis sed voluptatem, eos sapiente quaerat, consequatur neque beatae architecto commodi! Debitis, qui eum iure perspiciatis aperiam cumque voluptatum? </p> |
|
|
|
<a> Terms & Condition </a> |
|
|
|
<div class="heading"> {{ code.offersTitle }} </div> |
|
|
|
<div class="code"> Promocode: <span> {{ code.offersCode }} </span> </div> |
|
|
|
<p> {{ code.offerSummary }} </p> |
|
|
|
<a> Max Amount of offer: ₹ {{ code.offersMaxcount }} </a> |
|
|
|
</ion-label> |
|
|
|
</ion-item> |
|
|
|
</ion-list> |
|
|
|
|