address style fix
Showing
... | ... | @@ -6,8 +6,8 @@ |
<ion-row class="no-gutter"> | ||
<ion-col class="no-gutter" size="2"> | ||
<button class="nav_btn nav_back_white floatLeft" (click)="goBack()"> | ||
<img src="../assets/arrow_white.png" /> | ||
</button> | ||
<img src="../assets/arrow_white.png" /> | ||
</button> | ||
</ion-col> | ||
<ion-col class="no-gutter" size="8"> | ||
<div class="nav_title floatLeft"> | ||
... | ... | @@ -68,8 +68,8 @@ |
<p class="textLeft">Total Price:</p> | ||
</ion-col> | ||
<ion-col> | ||
<p class="textRight">A$ | ||
{{service.formatNumber(cartService.cartTotal.toFixed(2))}} | ||
<p class="textRight"> | ||
A$ {{service.formatNumber(cartService.cartTotal.toFixed(2))}} | ||
</p> | ||
</ion-col> | ||
</ion-row> | ||
... | ... | @@ -86,27 +86,31 @@ |
<h5> | ||
<span class="floatLeft">ITEMS</span> | ||
<span class="floatRight" *ngIf="cartService.cartTotal">A$ | ||
{{service.formatNumber(cartService.cartTotal.toFixed(2))}}</span> | ||
<div class="clear"></div> | ||
</h5> | ||
<ion-grid class="p0" *ngIf="cartService.carts && cartService.carts.length > 0"> | ||
<ion-row *ngFor="let carts of cartService.carts"> | ||
<ion-col size="6" class="p0"> | ||
<h6 class="textLeft">{{unEscape(carts.prodName)}}</h6> | ||
</ion-col> | ||
<ion-col size="2" class="p0"> | ||
<h6 class="textRight"><strong>{{carts.qty}} X</strong></h6> | ||
</ion-col> | ||
<ion-col size="4" class="p0"> | ||
<h6 class="textRight"> | ||
<strong>A$ {{service.formatNumber(carts.price)}}</strong> | ||
</h6> | ||
</ion-col> | ||
</ion-row> | ||
</ion-grid> | ||
<hr /> | ||
<h5> | ||
<span class="floatLeft">DELIVERY</span> | ||
{{service.formatNumber(cartService.cartTotal.toFixed(2))}}</span | ||
> | ||
<div class="clear"></div> | ||
</h5> | ||
<ion-grid | ||
class="p0" | ||
*ngIf="cartService.carts && cartService.carts.length > 0" | ||
> | ||
<ion-row *ngFor="let carts of cartService.carts"> | ||
<ion-col size="6" class="p0"> | ||
<h6 class="textLeft">{{unEscape(carts.prodName)}}</h6> | ||
</ion-col> | ||
<ion-col size="2" class="p0"> | ||
<h6 class="textRight"><strong>{{carts.qty}} X</strong></h6> | ||
</ion-col> | ||
<ion-col size="4" class="p0"> | ||
<h6 class="textRight"> | ||
<strong>A$ {{service.formatNumber(carts.price)}}</strong> | ||
</h6> | ||
</ion-col> | ||
</ion-row> | ||
</ion-grid> | ||
<hr /> | ||
<h5> | ||
<span class="floatLeft">DELIVERY</span> | ||
<span class="floatRight" (click)="istoggle()">CHANGE</span> | ||
<div class="clear"></div> | ||
</h5> | ||
... | ... | @@ -114,61 +118,58 @@ |
<ion-row> | ||
<ion-col class="p0"> | ||
<h6> | ||
{{addressService.custAddress.building}},<span | ||
*ngIf="addressService.custAddress.landmark && addressService.custAddress.landmark!==''">{{addressService.custAddress.landmark}},</span> | ||
<br /> {{addressService.custAddress.address}} | ||
</h6> | ||
</ion-col> | ||
</ion-row> | ||
</ion-grid> | ||
<hr /> | ||
<h5> | ||
<span class="floatLeft">PAYMENT</span> | ||
<!-- <span class="floatRight">CHANGE</span> --> | ||
<div class="clear"></div> | ||
</h5> | ||
<div class="payment_method"> | ||
<input type="radio" name="payments" id="cod" name="radio-group" checked="true" | ||
(click)="getwaycod()" /> | ||
<label for="cod"> | ||
<p>Credit Card</p> | ||
</label> | ||
</div> | ||
<div class="payment_method"> | ||
<input type="radio" name="payments" id="paypal" name="radio-group" | ||
(click)="getwaypaypal()" /> | ||
<label for="paypal"> | ||
<p>PayPal</p> | ||
</label> | ||
</div> | ||
<!-- <div class="card_div" [hidden]="gateway !=1"> | ||
{{addressService.custAddress.building}},<span *ngIf="addressService.custAddress.landmark && addressService.custAddress.landmark!==''">{{addressService.custAddress.landmark}},</span | ||
> | ||
<br /> | ||
{{addressService.custAddress.address}} | ||
</h6> | ||
</ion-col> | ||
</ion-row> | ||
</ion-grid> | ||
<hr /> | ||
<h5> | ||
<span class="floatLeft">PAYMENT</span> | ||
<!-- <span class="floatRight">CHANGE</span> --> | ||
<div class="clear"></div> | ||
</h5> | ||
<div class="payment_method"> | ||
<input type="radio" name="payments" id="cod" name="radio-group" checked="true" (click)="getwaycod()" /> | ||
<label for="cod"> | ||
<p>Credit Card</p> | ||
</label> | ||
</div> | ||
<div class="payment_method"> | ||
<input type="radio" name="payments" id="paypal" name="radio-group" (click)="getwaypaypal()" /> | ||
<label for="paypal"> | ||
<p>PayPal</p> | ||
</label> | ||
</div> | ||
<!-- <div class="card_div" [hidden]="gateway !=1"> | ||
<input class="card_no borderNone widthFull" placeholder="PayPal ID" /> | ||
</div> --> | ||
<div class="payment_method"> | ||
<input type="radio" name="payments" id="afterpay" name="radio-group" | ||
(click)="getwayafterpay()" /> | ||
<label for="afterpay"> | ||
<p>AfterPay</p> | ||
</label> | ||
</div> | ||
<!-- <div class="card_div" [hidden]="gateway !=2"> | ||
<div class="payment_method"> | ||
<input type="radio" name="payments" id="afterpay" name="radio-group" (click)="getwayafterpay()" /> | ||
<label for="afterpay"> | ||
<p>AfterPay</p> | ||
</label> | ||
</div> | ||
<!-- <div class="card_div" [hidden]="gateway !=2"> | ||
<input class="card_no" placeholder="**** **** **** 1458" /> | ||
<input class="cv_number" placeholder="CVV" /> | ||
</div> --> | ||
<div class="payment_method"> | ||
<input type="radio" name="payments" id="payk" name="radio-group" | ||
(click)="getwaypayk()" /> | ||
<label for="payk"> | ||
<p>PayK</p> | ||
</label> | ||
</div> | ||
<!-- <div class="card_div" [hidden]="gateway !=3"> | ||
<div class="payment_method"> | ||
<input type="radio" name="payments" id="payk" name="radio-group" (click)="getwaypayk()" /> | ||
<label for="payk"> | ||
<p>PayK</p> | ||
</label> | ||
</div> | ||
<!-- <div class="card_div" [hidden]="gateway !=3"> | ||
<input | ||
class="card_no borderNone widthFull" | ||
placeholder="PafyK ID" | ||
/> | ||
</div> --> | ||
<!-- <div class="delivery_time"> | ||
<!-- <div class="delivery_time"> | ||
<ul> | ||
<li> | ||
Delivery 10 Mnt<br> | ||
... | ... | @@ -180,163 +181,202 @@ |
</li> | ||
</ul> | ||
</div> --> | ||
<hr /> | ||
<div class="coupon_code"> | ||
<div class="promo-row"> | ||
<input class="" placeholder="COUPON CODE: GET50" #promo /><button | ||
class="add_btn apply_btn" (click)="promoApply(promo.value)"> | ||
APPLY | ||
</button> | ||
</div> | ||
<span *ngIf="discountApplied == 1" class="promo-success">Promocode applied successfully | ||
</span> | ||
<span *ngIf="discountApplied == 2" class="promo-error">Invalid Promocode</span> | ||
</div> | ||
<hr /> | ||
<div class="coupon_code"> | ||
<div class="promo-row"> | ||
<input class="" placeholder="COUPON CODE: GET50" #promo /><button class="add_btn apply_btn" (click)="promoApply(promo.value)"> | ||
APPLY | ||
</button> | ||
</div> | ||
<span *ngIf="discountApplied == 1" class="promo-success">Promocode applied successfully | ||
</span> | ||
<span *ngIf="discountApplied == 2" class="promo-error">Invalid Promocode</span | ||
> | ||
</div> | ||
<br /> | ||
<br /> | ||
<h6> | ||
<span class="floatLeft">PRODUCT COST</span> | ||
<span class="floatRight" *ngIf="cartService.cartTotal">A$ | ||
{{service.formatNumber(cartService.cartTotal.toFixed(2))}}</span> | ||
<div class="clear"></div> | ||
</h6> | ||
<h6> | ||
<span class="floatLeft">PRODUCT COST</span> | ||
<span class="floatRight" *ngIf="cartService.cartTotal">A$ | ||
{{service.formatNumber(cartService.cartTotal.toFixed(2))}}</span | ||
> | ||
<div class="clear"></div> | ||
</h6> | ||
<h6> | ||
<span class="floatLeft">DELIVERY CHARGE</span> | ||
<span class="floatRight" *ngIf="cartService.cartTotal">A$ | ||
{{service.formatNumber(getDeliveryCharge(cartService.cartTotal))}}</span> | ||
<div class="clear"></div> | ||
</h6> | ||
<h6> | ||
<span class="floatLeft">GST/TAX</span> | ||
<span class="floatRight" *ngIf="cartService.cartTotal">A$ | ||
{{service.formatNumber(getTax(cartService.cartTotal))}}</span> | ||
<div class="clear"></div> | ||
</h6> | ||
<h6 *ngIf="discountApplied"> | ||
<span class="floatLeft">DISCOUNT</span> | ||
<span class="floatRight">(-) A$ {{service.formatNumber(discount)}}</span> | ||
<div class="clear"></div> | ||
</h6> | ||
<hr /> | ||
<div class="total_div"> | ||
<ion-row> | ||
<ion-col> | ||
<p class="textLeft">Total Price:</p> | ||
</ion-col> | ||
<ion-col> | ||
<p class="textRight" *ngIf="cartService.cartTotal"> | ||
A$ {{service.formatNumber(getTotal(cartService.cartTotal))}} | ||
</p> | ||
</ion-col> | ||
</ion-row> | ||
</div> | ||
</div> | ||
</ion-slide> | ||
<ion-slide> | ||
<div class="order_placed_div"> | ||
<img src="../assets/[email protected]" /> | ||
<h4>Order Placed</h4> | ||
<p>{{bookDate}}</p> | ||
<h3>Your order is due for delivery in</h3> | ||
<h1>{{deliveryTime}}</h1> | ||
<button class="view_order" (click)="goToPage('myorder')"> | ||
VIEW ORDERS</button><br /> | ||
<button class="home_btn" (click)="goToPage('home')">HOME</button> | ||
</div> | ||
</ion-slide> | ||
</ion-slides> | ||
<h6> | ||
<span class="floatLeft">DELIVERY CHARGE</span> | ||
<span class="floatRight" *ngIf="cartService.cartTotal">A$ | ||
{{service.formatNumber(getDeliveryCharge(cartService.cartTotal))}}</span | ||
> | ||
<div class="clear"></div> | ||
</h6> | ||
<h6> | ||
<span class="floatLeft">GST/TAX</span> | ||
<span class="floatRight" *ngIf="cartService.cartTotal">A$ | ||
{{service.formatNumber(getTax(cartService.cartTotal))}}</span | ||
> | ||
<div class="clear"></div> | ||
</h6> | ||
<h6 *ngIf="discountApplied"> | ||
<span class="floatLeft">DISCOUNT</span> | ||
<span class="floatRight">(-) A$ {{service.formatNumber(discount)}}</span | ||
> | ||
<div class="clear"></div> | ||
</h6> | ||
<hr /> | ||
<div class="total_div"> | ||
<ion-row> | ||
<ion-col> | ||
<p class="textLeft">Total Price:</p> | ||
</ion-col> | ||
<ion-col> | ||
<p class="textRight" *ngIf="cartService.cartTotal"> | ||
A$ | ||
{{service.formatNumber(getTotal(cartService.cartTotal))}} | ||
</p> | ||
</ion-col> | ||
</ion-row> | ||
</div> | ||
</div> | ||
</div> | ||
</ion-slide> | ||
<ion-slide> | ||
<div class="order_placed_div"> | ||
<img src="../assets/[email protected]" /> | ||
<h4>Order Placed</h4> | ||
<p>{{bookDate}}</p> | ||
<h3>Your order is due for delivery in</h3> | ||
<h1>{{deliveryTime}}</h1> | ||
<button class="view_order" (click)="goToPage('myorder')"> | ||
VIEW ORDERS</button | ||
><br /> | ||
<button class="home_btn" (click)="goToPage('home')">HOME</button> | ||
</div> | ||
</ion-slide> | ||
</ion-slides> | ||
</div> | ||
</div> | ||
</div> | ||
</ion-content> | ||
<ion-footer class="hide-on-keyboard-open"> | ||
<div class="footer_btnbay" *ngIf="cartService.carts && cartService.carts.length > 0" [hidden]="currentIndex != 0"> | ||
<div class="continue" (click)="goToPage('productlist')"> | ||
CONTINUE SHOPPING | ||
</div> | ||
<div class="checkout" (click)="next(1)">CHECKOUT</div> | ||
</div> | ||
<div class="footer_btn" *ngIf="cartService.carts && cartService.carts.length > 0" [hidden]="currentIndex != 1" | ||
(click)="next(2);"> | ||
PAY | ||
<div | ||
class="footer_btnbay" | ||
*ngIf="cartService.carts && cartService.carts.length > 0" | ||
[hidden]="currentIndex != 0" | ||
> | ||
<div class="continue" (click)="goToPage('productlist')"> | ||
CONTINUE SHOPPING | ||
</div> | ||
<div class="checkout" (click)="next(1)">CHECKOUT</div> | ||
</div> | ||
<div | ||
class="footer_btn" | ||
*ngIf="cartService.carts && cartService.carts.length > 0" | ||
[hidden]="currentIndex != 1" | ||
(click)="next(2);" | ||
> | ||
PAY | ||
</div> | ||
</ion-footer> | ||
<div class="loader" *ngIf="loader"> | ||
<div class="lds-ripple"> | ||
<div></div> | ||
<div></div> | ||
</div> | ||
<div class="lds-ripple"> | ||
<div></div> | ||
<div></div> | ||
</div> | ||
</div> | ||
<div *ngIf="isShow" [@slideInOut]> | ||
<div class="nav_header"> | ||
<ion-grid class="no-gutter"> | ||
<ion-row class="no-gutter"> | ||
<ion-col class="no-gutter" size="2"> | ||
<button class="nav_btn nav_back floatLeft" (click)="istoggle();"> | ||
<img src="../assets/Group17_2.png" /> | ||
</button> | ||
</ion-col> | ||
<ion-col class="no-gutter" size="8"> | ||
<div class="nav_title floatLeft"> | ||
<h4>CHANGE LOCATION</h4> | ||
</div> | ||
</ion-col> | ||
<ion-col class="no-gutter" size="2"></ion-col> | ||
</ion-row> | ||
</ion-grid> | ||
</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" [iconUrl]=" | ||
<div class="nav_header"> | ||
<ion-grid class="no-gutter"> | ||
<ion-row class="no-gutter"> | ||
<ion-col class="no-gutter" size="2"> | ||
<button class="nav_btn nav_back floatLeft" (click)="istoggle();"> | ||
<img src="../assets/Group17_2.png" /> | ||
</button> | ||
</ion-col> | ||
<ion-col class="no-gutter" size="8"> | ||
<div class="nav_title floatLeft"> | ||
<h4>CHANGE LOCATION</h4> | ||
</div> | ||
</ion-col> | ||
<ion-col class="no-gutter" size="2"></ion-col> | ||
</ion-row> | ||
</ion-grid> | ||
</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" | ||
[iconUrl]=" | ||
{ | ||
url: './assets/pin-2.svg', | ||
scaledSize: { | ||
width: 28, | ||
height: 40 | ||
}}"></agm-marker> | ||
</agm-map> | ||
<div class="add_address_wrapper"> | ||
<h5> | ||
<span class="floatLeft">SELECT 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" | ||
[ngClass]="{'no-devlivery': !address.nearest}"> | ||
<h4 *ngIf="address.nearest === true">DELIVERS TO</h4> | ||
<h4 *ngIf="address.nearest === false">DOES NOT DELIVER TO</h4> | ||
<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 /> | ||
<label for="styled-checkbox-{{i}}"> {{address.addressType}} </label> | ||
</div> | ||
<div class="floatLeft"> | ||
<p> | ||
{{address.building}}, <span | ||
*ngIf="address.landmark && address.landmark!==''">{{address.landmark}},</span> | ||
<!-- {{address.address}} --> | ||
</p> | ||
</div> | ||
<div class="clear"></div> | ||
</li> | ||
</ul> | ||
<div class="textCenter" *ngIf="addressService.addressList && addressService.addressList.length === 0">No | ||
Address Found</div> | ||
</div> | ||
<!-- <div class="loader" *ngIf="loader"> | ||
}}" | ||
></agm-marker> | ||
</agm-map> | ||
<div class="add_address_wrapper"> | ||
<h5> | ||
<span class="floatLeft">SELECT 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" | ||
[ngClass]="{'no-devlivery': !address.nearest}" | ||
> | ||
<h4 *ngIf="address.nearest === true">DELIVERS TO</h4> | ||
<h4 *ngIf="address.nearest === false">DOES NOT DELIVER TO</h4> | ||
<div> | ||
{{address.default}} | ||
<input | ||
class="styled-checkbox" | ||
name="addressId" | ||
id="styled-checkbox-{{i}}" | ||
type="radio" | ||
(click)="setDefault(address.addressId, i)" | ||
[value]="address.addressId" | ||
#addressType | ||
/> | ||
<label for="styled-checkbox-{{i}}"> {{address.addressType}} </label> | ||
</div> | ||
<div> | ||
<p> | ||
{{address.building}}, | ||
<span *ngIf="address.landmark && address.landmark!==''" | ||
>{{address.landmark}},</span | ||
> | ||
<!-- {{address.address}} --> | ||
</p> | ||
</div> | ||
<div class="clear"></div> | ||
</li> | ||
</ul> | ||
<div | ||
class="textCenter" | ||
*ngIf="addressService.addressList && addressService.addressList.length === 0" | ||
> | ||
No Address Found | ||
</div> | ||
</div> | ||
<!-- <div class="loader" *ngIf="loader"> | ||
<div class="lds-ripple"> | ||
<div></div> | ||
<div></div> | ||
</div> | ||
</div> --> | ||
</ion-content> | ||
</ion-content> | ||
</div> | ||
\ No newline at end of file |
Please
register
or
sign in
to comment