server change
Showing
... | ... | @@ -18,6 +18,7 @@ |
"@angular/common": "~8.1.2", | ||
"@angular/compiler": "~8.1.2", | ||
"@angular/core": "~8.1.2", | ||
"@angular/fire": "^5.2.1", | ||
"@angular/forms": "~8.1.2", | ||
"@angular/platform-browser": "~8.1.2", | ||
"@angular/platform-browser-dynamic": "~8.1.2", | ||
... | ... | @@ -28,8 +29,9 @@ |
"@ionic-native/splash-screen": "^5.0.0", | ||
"@ionic-native/status-bar": "^5.12.0", | ||
"@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", | ||
... | ... | @@ -38,7 +40,9 @@ |
"cordova-plugin-splashscreen": "^5.0.2", | ||
"cordova-plugin-statusbar": "^2.4.2", | ||
"cordova-plugin-whitelist": "^1.3.3", | ||
"cordova-sqlite-storage": "^3.3.0", | ||
"core-js": "^2.5.4", | ||
"firebase": "^6.4.0", | ||
"rxjs": "~6.5.1", | ||
"tslib": "^1.9.0", | ||
"zone.js": "~0.9.1" | ||
... | ... | @@ -83,7 +87,8 @@ |
"cordova-plugin-geolocation": { | ||
"GEOLOCATION_USAGE_DESCRIPTION": "To locate you" | ||
}, | ||
"cordova-plugin-nativegeocoder": {} | ||
"cordova-plugin-nativegeocoder": {}, | ||
"cordova-sqlite-storage": {} | ||
}, | ||
"platforms": [ | ||
"android" | ||
... | ... |
resources/README.md
deleted
100644 → 0
... | ... | @@ -9,65 +9,36 @@ |
<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> | ||
... | ... | @@ -76,8 +47,7 @@ |
</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,43 +27,16 @@ |
<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> | ||
<h5>{{product.prodName}}</h5> | ||
<p>A$ {{product.price}}<span class="offer" *ngIf="product.discount > 0">-{{product.discount}}%</span></p> | ||
</li> | ||
</ul> | ||
</div> | ||
... | ... |
<div class="nav_header"> | ||
<button class="nav_btn nav_back floatLeft"> | ||
<button class="nav_btn nav_back floatLeft" (click)="goBack()"> | ||
</button> | ||
<div class="nav_title floatLeft"> | ||
<input class="search_bar" placeholder="Search here.. eg:shirts, retailers etc..."> </div> | ||
... | ... | @@ -15,7 +15,7 @@ |
<div class="featured_slider"> | ||
<ion-slides pager="false" [options]="slideOpts"> | ||
<ion-slide> | ||
<div class="feature_product" (click)="goToPage('productlist')"> | ||
<div class="feature_product" (click)="goToPage('catagory')"> | ||
<img src="../assets/videoblocks-woman-using-phone-purchase-in-cool-sunglasses-and-black-dress-holding-black-shopping-bag-isolated-on-dark-background-in-black-friday-holid@3x.png"> | ||
<div class="feature_overlay"> | ||
<h5>Flames Fashion</h5> | ||
... | ... | @@ -24,7 +24,7 @@ |
</div> | ||
</ion-slide> | ||
<ion-slide> | ||
<div class="feature_product" (click)="goToPage('productlist')"> | ||
<div class="feature_product" (click)="goToPage('catagory')"> | ||
<img src="../assets/[email protected]"> | ||
<div class="feature_overlay"> | ||
<h5>Flames Fashion</h5> | ||
... | ... | @@ -33,7 +33,7 @@ |
</div> | ||
</ion-slide> | ||
<ion-slide> | ||
<div class="feature_product" (click)="goToPage('productlist')"> | ||
<div class="feature_product" (click)="goToPage('catagory')"> | ||
<img src="../assets/videoblocks-woman-using-phone-purchase-in-cool-sunglasses-and-black-dress-holding-black-shopping-bag-isolated-on-dark-background-in-black-friday-holid@3x.png"> | ||
<div class="feature_overlay"> | ||
<h5>Flames Fashion</h5> | ||
... | ... | @@ -48,7 +48,7 @@ |
</div> | ||
<div class="nearby_shop_list"> | ||
<ul> | ||
<li (click)="goToPage('productlist')"> | ||
<li (click)="goToPage('catagory')"> | ||
<div class="nearby_image"> | ||
<img src="../assets/[email protected]"> | ||
</div> | ||
... | ... | @@ -64,7 +64,7 @@ |
</div> | ||
<div class="clear"></div> | ||
</li> | ||
<li (click)="goToPage('productlist')"> | ||
<li (click)="goToPage('catagory')"> | ||
<div class="nearby_image"> | ||
<img src="../assets/[email protected]"> | ||
</div> | ||
... | ... | @@ -80,7 +80,7 @@ |
</div> | ||
<div class="clear"></div> | ||
</li> | ||
<li (click)="goToPage('productlist')"> | ||
<li (click)="goToPage('catagory')"> | ||
<div class="nearby_image"> | ||
<img src="../assets/[email protected]"> | ||
</div> | ||
... | ... | @@ -97,7 +97,7 @@ |
<div class="clear"></div> | ||
</li> | ||
<li (click)="goToPage('productlist')"> | ||
<li (click)="goToPage('catagory')"> | ||
<div class="nearby_image"> | ||
<img src="../assets/2193bb91-3be9-4de9-96f4-4ce7aab8547e1558436499234-RARE-Women-Black-Printed-A-Line-Dress-6731558436495088-1@3x.png"> | ||
</div> | ||
... | ... |
src/config/auth.service.ts
0 → 100644
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/service.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
src/config/services/user.ts
0 → 100644
Please
register
or
sign in
to comment