latest change
Showing
This diff is collapsed.
Click to expand it.
... | ... | @@ -31,7 +31,7 @@ |
"@ionic/angular": "^4.7.1", | ||
"@ionic/storage": "^2.2.0", | ||
"agm-direction": "^0.7.8", | ||
"cordova-android": "7.1.4", | ||
"cordova-android": "^8.0.0", | ||
"cordova-plugin-device": "^2.0.2", | ||
"cordova-plugin-geolocation": "4.0.2", | ||
"cordova-plugin-ionic-keyboard": "^2.1.3", | ||
... | ... | @@ -94,4 +94,4 @@ |
"android" | ||
] | ||
} | ||
} | ||
} | ||
\ No newline at end of file |
resources/README.md
deleted
100644 → 0
... | ... | @@ -9,75 +9,45 @@ |
<div class="clear"></div> | ||
</div> | ||
<ion-content> | ||
<div class="product_detail_wrapper"> | ||
<div class="product_detail_wrapper" *ngIf="product"> | ||
<div class="product_banner"> | ||
<div class="fav_icon"></div> | ||
<div class="featured_badge">Featured</div> | ||
<img src="../assets/[email protected]"> | ||
<div class="featured_badge" *ngIf="product.featured">Featured</div> | ||
<img [src]="product.image" onerror="this.src='../assets/[email protected]'"> | ||
</div> | ||
<div class="product_header"> | ||
<ion-row> | ||
<ion-col size="8"> | ||
<h3>European style V Neck</h3> | ||
<p><strong><span><img src="../assets/Path61_2.png"></span>4</strong>Lulu Fashion, Women's Fashion | ||
<h3>{{product.prodName}}</h3> | ||
<p><strong><span><img src="../assets/Path61_2.png"></span>4</strong>Lulu Fashion, {{product.category}} | ||
</p> | ||
</ion-col> | ||
<ion-col size="4"> | ||
<h5>AU$99.00</h5> | ||
<h5>A$ {{product.price}}</h5> | ||
<p><span class="offer" *ngIf="product.discount > 0">-{{product.discount}}%</span></p> | ||
</ion-col> | ||
</ion-row> | ||
</div> | ||
<div class="product_div_content"> | ||
<h5>Size</h5> | ||
<div class="size_div"> | ||
<ul> | ||
<ul *ngIf="product.size"> | ||
<ion-slides pager="false" [options]="slideOpts"> | ||
<ion-slide> | ||
<li> | ||
<button id="custom_check_button"> | ||
<label> | ||
<input id="1" type="radio" name="services" value=""> | ||
<p>Small</p> | ||
</label> | ||
</button> | ||
</li> | ||
</ion-slide> | ||
<ion-slide> | ||
<li> | ||
<button id="custom_check_button"> | ||
<label> | ||
<input id="2" type="radio" name="services" value=""> | ||
<p>Medium</p> | ||
</label> | ||
</button> | ||
</li> | ||
</ion-slide> | ||
<ion-slide> | ||
<li> | ||
<button id="custom_check_button"> | ||
<label> | ||
<input id="3" type="radio" name="services" value=""> | ||
<p>Large</p> | ||
</label> | ||
</button> | ||
</li> | ||
</ion-slide> | ||
<ion-slide> | ||
<ion-slide *ngFor="let size of product.size; let i = index"> | ||
<li> | ||
<button id="custom_check_button"> | ||
<label> | ||
<input id="4" type="radio" name="services" value=""> | ||
<p>Xtra Large</p> | ||
<input id="{{size.sizeId}}" type="radio" name="services" value="{{size.sizeId}}" (click)="cartService.choose_size(size.sizeName)" [checked]="i==0"> | ||
<p>{{size.sizeName}}</p> | ||
</label> | ||
</button> | ||
</li> | ||
</ion-slide> | ||
</ion-slide> | ||
</ion-slides> | ||
</ul> | ||
</div> | ||
<h5>Description</h5> | ||
<p>Brand - SMART SHOP Fabric- Net Work - Embroidered Colour- White Occasion - Wedding,Festival Wash Care- Normal Wash Type- Anarkali Sleeve- Full Sleeve Dupatta- No Neck- Round This product make you more beautiful and pretty from other. This | ||
product has good quality material. Buy only original that product with us for get satisfy. Buy only original Buy only that | ||
<p>{{product.prodDesc}} | ||
</p> | ||
<h5> | ||
<span class="floatLeft">Reviews</span><span class="floatRight" (click)="goToPage('reviewlist')">MORE</span> | ||
... | ... | @@ -206,6 +176,6 @@ |
<button class="fav"></button> | ||
<button class="cart" (click)="goToPage('cart')"></button> | ||
</div> | ||
<div class="footer_btn" (click)="goToPage('cart')">BUY NOW</div> | ||
<div class="footer_btn" (click)="cartService.buyNow(product)">BUY NOW</div> | ||
</div> | ||
</ion-content> | ||
\ No newline at end of file |
... | ... | @@ -27,44 +27,17 @@ |
<div class="product_title"> | ||
Lulu Fashion | ||
</div> | ||
<ul [class.grid_view]="onGrid"> | ||
<li (click)="goToPage('productdetail')"> | ||
<ul [class.grid_view]="onGrid" *ngIf="prodService.product && prodService.product.length > 0"> | ||
<li *ngFor="let product of prodService.product; let i = index" (click)="prodDetails(i)"> | ||
<div class="product_image"> | ||
<img src="../assets/[email protected]"> | ||
<img [src]="product.image" onerror="this.src='../assets/[email protected]'"> | ||
<div class="fav_icon"> | ||
</div> | ||
<div class="featured_badge" *ngIf="product.featured">Featured</div> | ||
</div> | ||
<h5>European Style V Neck</h5> | ||
<p>AU$99.00</p> | ||
</li> | ||
<li (click)="goToPage('productdetail')"> | ||
<div class="product_image"> | ||
<img src="../assets/Recommended-Ball-Gown-Floor-Length-V-Neck-Lace-Organza-Prom-Dress-OD850662@3x.png"> | ||
<div class="fav_icon"> | ||
</div> | ||
</div> | ||
<h5>European Style V Neck</h5> | ||
<p>AU$99.00</p> | ||
</li> | ||
<li (click)="goToPage('productdetail')"> | ||
<div class="product_image"> | ||
<img src="../assets/[email protected]"> | ||
<div class="fav_icon"> | ||
</div> | ||
</div> | ||
<h5>European Style V Neck</h5> | ||
<p>AU$99.00 <span class="offer">-8%</span></p> | ||
</li> | ||
<li (click)="goToPage('productdetail')"> | ||
<div class="product_image"> | ||
<img src="../assets/[email protected]"> | ||
<div class="fav_icon"> | ||
</div> | ||
<div class="featured_badge">Featured</div> | ||
</div> | ||
<h5>European Style V Neck</h5> | ||
<p>AU$99.00<span>AU$110.00</span></p> | ||
</li> | ||
<h5>{{product.prodName}}</h5> | ||
<p>A$ {{product.price}}<span class="offer" *ngIf="product.discount > 0">-{{product.discount}}%</span></p> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="sort_wrappper" *ngIf="isShow" [@slideInOut]> | ||
... | ... |
src/config/cart.service.ts
0 → 100644
src/config/myorder.service.ts
0 → 100644
src/config/order.service.ts
0 → 100644
src/config/products.service.ts
0 → 100644
src/config/services/cart.ts
0 → 100644
src/config/services/myorder.ts
0 → 100644
src/config/services/order.ts
0 → 100644
src/config/services/product.ts
0 → 100644
Please
register
or
sign in
to comment