conflict
Showing
| ... | @@ -82,10 +82,10 @@ | ... | @@ -82,10 +82,10 @@ | 
| <hr> | <hr> | ||
| <h5> | <h5> | ||
| <span class="floatLeft">DELIVERY</span> | <span class="floatLeft">DELIVERY</span> | ||
| <span class="floatRight">EDIT</span> | <span class="floatRight" (click)="istoggle()">EDIT</span> | ||
| <div class="clear"></div> | <div class="clear"></div> | ||
| </h5> | </h5> | ||
| <ion-grid class="p0"> | <ion-grid class="p0" *ngIf="custAddress"> | ||
| <ion-row> | <ion-row> | ||
| <ion-col class="p0"> | <ion-col class="p0"> | ||
| <h6> | <h6> | ||
| ... | @@ -192,7 +192,7 @@ | ... | @@ -192,7 +192,7 @@ | 
| <div class="order_placed_div"> | <div class="order_placed_div"> | ||
| <img src="../assets/[email protected]"> | <img src="../assets/[email protected]"> | ||
| <h4>Order Placed</h4> | <h4>Order Placed</h4> | ||
| <p>June 26th 2019, 03:00 PM</p> | <p>{{bookDate}}</p> | ||
| <h3>The product will be delivered in</h3> | <h3>The product will be delivered in</h3> | ||
| <h1>60:00 Mins</h1> | <h1>60:00 Mins</h1> | ||
| <button class="view_order" (click)="goToPage('myorder')">VIEW ORDERS</button><br> | <button class="view_order" (click)="goToPage('myorder')">VIEW ORDERS</button><br> | ||
| ... | @@ -223,3 +223,44 @@ | ... | @@ -223,3 +223,44 @@ | 
| </div> | </div> | ||
| </div> | </div> | ||
| <div *ngIf="isShow" [@slideInOut]> | |||
| <div class="nav_header"> | |||
| <button class="nav_btn nav_back floatLeft" (click)="istoggle(); setAddress()"> | |||
| <img src="../assets/Group17_2.png"> | |||
| </button> | |||
| <div class="nav_title floatLeft"> | |||
| <h4>CHANGE LOCATION</h4> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </div> | |||
| <ion-content class="sort_wrappper"> | |||
| <agm-map [zoom]="20" [latitude]="lat" [longitude]="lng" [disableDefaultUI]="false" [zoomControl]="false" [backgroundColor]="'rgba(29, 27, 130,0.2)'"> | |||
| <agm-marker [latitude]="lat" [longitude]="lng"></agm-marker> | |||
| </agm-map> | |||
| <div class="add_address_wrapper"> | |||
| <h5> | |||
| <span class="floatLeft">NEW ADDRESS</span> | |||
| <span class="floatRight" (click)="istoggle(); goToPage('nearby')">ADD NEW</span> | |||
| <div class="clear"></div> | |||
| </h5> | |||
| <ul *ngIf="addressService.addressList && addressService.addressList.length > 0"> | |||
| <li *ngFor="let address of addressService.addressList; let i = index"> | |||
| <div class="floatLeft">{{address.default}} | |||
| <input class="styled-checkbox" name="addressId" id="styled-checkbox-{{i}}" type="radio" (click)="setDefault(address.addressId, i)" [value]="address.addressId" #addressType [checked]="address.defaultVal == 1"> | |||
| <label for="styled-checkbox-{{i}}"> {{address.addressType}} | |||
| </label> | |||
| </div> | |||
| <div class="floatLeft"> | |||
| <p> | |||
| {{address.building}}, {{address.landmark}}, {{address.address}} | |||
| </p> | |||
| </div> | |||
| <div class="clear"></div> | |||
| </li> | |||
| </ul> | |||
| </div> | |||
| </ion-content> | |||
| </div> | |||
| ... | @@ -18,14 +18,14 @@ | ... | @@ -18,14 +18,14 @@ | 
| (click)="changeFav(product.prodId)" | (click)="changeFav(product.prodId)" | ||
| ></div> | ></div> | ||
| <div class="featured_badge" *ngIf="product.featured">Featured</div> | <div class="featured_badge" *ngIf="product.featured">Featured</div> | ||
| <ion-slides pager="true" [options]="bannerOptions"> | <ion-slides pager="true" [options]="bannerOptions" *ngIf="slideData"> | ||
| <ion-slide> | <ion-slide *ngFor="let prodImg of slideData"> | ||
| <img | <img | ||
| [src]="product.image" | [src]="prodImg" | ||
| onerror="this.src='../assets/[email protected]'" | onerror="this.src='../assets/[email protected]'" | ||
| /> | /> | ||
| </ion-slide> | </ion-slide> | ||
| <ion-slide> | <!-- <ion-slide> | ||
| <img | <img | ||
| [src]="product.image" | [src]="product.image" | ||
| onerror="this.src='../assets/[email protected]'" | onerror="this.src='../assets/[email protected]'" | ||
| ... | @@ -36,7 +36,7 @@ | ... | @@ -36,7 +36,7 @@ | 
| [src]="product.image" | [src]="product.image" | ||
| onerror="this.src='../assets/[email protected]'" | onerror="this.src='../assets/[email protected]'" | ||
| /> | /> | ||
| </ion-slide> | </ion-slide> --> | ||
| </ion-slides> | </ion-slides> | ||
| </div> | </div> | ||
| <div class="product_header"> | <div class="product_header"> | ||
| ... | @@ -63,12 +63,12 @@ | ... | @@ -63,12 +63,12 @@ | 
| </div> | </div> | ||
| <div class="product_div_content"> | <div class="product_div_content"> | ||
| <h5>Color</h5> | <h5 *ngIf="product.color && product.color[0] !=='No-Color'">Color</h5> | ||
| <div class="size_div"> | <div class="size_div"> | ||
| <ul *ngIf="product.size"> | <ul *ngIf="product.size"> | ||
| <ion-slides pager="false" [options]="slideOpts"> | <ion-slides pager="false" [options]="slideOpts"> | ||
| <ion-slide *ngFor="let color of product.color; let i = index"> | <ion-slide *ngFor="let color of product.color; let i = index"> | ||
| <li> | <li *ngIf="color !=='No-Color'"> | ||
| <button id="custom_check_button"> | <button id="custom_check_button"> | ||
| <label> | <label> | ||
| <input | <input | ||
| ... | @@ -87,12 +87,12 @@ | ... | @@ -87,12 +87,12 @@ | 
| </ion-slides> | </ion-slides> | ||
| </ul> | </ul> | ||
| </div> | </div> | ||
| <h5>Size</h5> | <h5 *ngIf="product.size && product.size[0] !=='Any-Size'">Size</h5> | ||
| <div class="size_div"> | <div class="size_div"> | ||
| <ul *ngIf="product.size"> | <ul *ngIf="product.size"> | ||
| <ion-slides pager="false" [options]="slideOpts"> | <ion-slides pager="false" [options]="slideOpts"> | ||
| <ion-slide *ngFor="let size of product.size; let i = index"> | <ion-slide *ngFor="let size of product.size; let i = index"> | ||
| <li> | <li *ngIf="size !=='Any-Size'"> | ||
| <button id="custom_check_button"> | <button id="custom_check_button"> | ||
| <label> | <label> | ||
| <input | <input | ||
| ... | ... | 
src/config/subject.service.ts
0 → 100644
Please
register
or
sign in
to comment