bug
Showing
... | ... | @@ -3,21 +3,19 @@ |
<div class="cart_head"> | ||
<div class="nav_header"> | ||
<button class="nav_btn nav_back_white floatLeft" (click)="goBack()"> | ||
<img src="../assets/arrow_white.png"> | ||
<img src="../assets/arrow_white.png" /> | ||
</button> | ||
<div class="nav_title floatLeft"> | ||
<h4></h4> | ||
</div> | ||
<button class="nav_btn floatRight"> | ||
</button> | ||
<button class="nav_btn floatRight"></button> | ||
<div class="clear"></div> | ||
</div> | ||
<img src="../assets/white_tick.png"> | ||
<img src="../assets/white_tick.png" /> | ||
<h4>ORDER IS PLACED</h4> | ||
<p>{{ data.bookDate.seconds * 1000 | date:'MMMM dd, y' }}</p> | ||
</div> | ||
<div class="order_status"> | ||
<div class="clear"></div> | ||
<div class="status_div go_green"> | ||
<h4>Order Placed</h4> | ||
... | ... | @@ -61,33 +59,48 @@ |
<ul> | ||
<li (click)="goToPage('productlist')"> | ||
<div class="nearby_image"> | ||
<img src="../assets/[email protected]"> | ||
<img | ||
[src]="data.product[0].image" | ||
onerror="this.src='../assets/[email protected]'" | ||
/> | ||
</div> | ||
<div class="nearby_detail"> | ||
<h5> | ||
<span class="floatLeft">{{data.shopperName}}</span> | ||
<span class="floatRight">0 | ||
<img src="../assets/Path61_2.png"> | ||
<span class="floatRight" | ||
>{{data.product[0].qty}} | ||
<img src="../assets/Path61_2.png" /> | ||
</span> | ||
<div class="clear"></div> | ||
</h5> | ||
<p>Men's & Women's Fashion</p> | ||
<p class="prodName">{{data.product[0].prodName}}</p> | ||
</div> | ||
<div class="clear"></div> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="product_detail" *ngFor="let product of data.product"> | ||
<h6>{{product.color}}, {{product.size}}</h6> | ||
<h6> | ||
<span *ngIf="product.color !== 'No-Color'">{{product.color}}, </span> | ||
<span *ngIf="product.size !== 'Any-Size'">{{product.size}}</span> | ||
</h6> | ||
<h5>Quantity : <span>{{product.qty}}</span></h5> | ||
<h5>Amount : <strong>A$ {{product.price}}</strong><span class="afterpay">COD</span></h5> | ||
<h5>Delivery time : <span>Delivery in 1 hour</span></h5> | ||
<h4>DELIVERY</h4> | ||
<h5> | ||
{{deliveryAddress}} | ||
Amount : <strong>A$ {{product.price}}</strong | ||
><span class="afterpay">COD</span> | ||
</h5> | ||
<button class="cancel_btn" (click)="goToPage('ordercancelled')">CANCEL THIS ORDER</button> | ||
<hr> | ||
<h5>Delivery time : <span>{{deliveryTime}}</span></h5> | ||
<h4>DELIVERY</h4> | ||
<h5 *ngIf="data.deliveryAddress"> | ||
{{data.deliveryAddress.addressType}},<br />{{data.deliveryAddress.address}}, | ||
<br /> | ||
{{data.deliveryAddress.building}}, <br /> | ||
{{data.deliveryAddress.landmark}} | ||
</h5> | ||
<button class="cancel_btn" (click)="goToPage('ordercancelled')"> | ||
CANCEL THIS ORDER | ||
</button> | ||
<hr /> | ||
</div> | ||
<!-- <div class="related_product_slider"> | ||
... | ... |
... | ... | @@ -4,7 +4,7 @@ |
width: 100%; | ||
height: 240px; | ||
text-align: center; | ||
background-image: url("../../assets/[email protected]"); | ||
background-image: url('../../assets/[email protected]'); | ||
background-position: center bottom; | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
... | ... | @@ -13,7 +13,7 @@ |
background-color: transparent; | ||
.nav_title { | ||
h4 { | ||
color: #FFF; | ||
color: #fff; | ||
} | ||
} | ||
} | ||
... | ... | @@ -41,7 +41,7 @@ |
border-radius: 5px; | ||
height: 40px; | ||
background-color: #29285b; | ||
color: #FFF; | ||
color: #fff; | ||
font-size: 18px; | ||
font-weight: lighter; | ||
padding-left: 20px; | ||
... | ... | @@ -164,7 +164,7 @@ |
height: 45px; | ||
width: 100%; | ||
background-color: #29285b; | ||
color: #FFF; | ||
color: #fff; | ||
font-size: 18px; | ||
font-weight: lighter; | ||
padding-left: 20px; | ||
... | ... | @@ -220,7 +220,7 @@ |
font-size: 27px; | ||
width: 30px; | ||
height: 30px; | ||
background-image: url("../../assets/Group32_2.png"); | ||
background-image: url('../../assets/Group32_2.png'); | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
background-size: 24px; | ||
... | ... | @@ -254,7 +254,7 @@ |
span { | ||
text-decoration: line-through; | ||
margin-left: 10px; | ||
color: rgba(215, 213, 228, 1) | ||
color: rgba(215, 213, 228, 1); | ||
} | ||
.offer { | ||
color: #fff; | ||
... | ... | @@ -269,3 +269,10 @@ |
} | ||
} | ||
} | ||
.prodName { | ||
white-space: nowrap; | ||
width: 200px; | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
} |
Please
register
or
sign in
to comment