Merge branch 'arjunlatest' into 'master'
Arjunlatest
See merge request !88
Showing
| ... | @@ -2,17 +2,23 @@ | ... | @@ -2,17 +2,23 @@ |
| <div class="cart_wrapper" *ngIf="data"> | <div class="cart_wrapper" *ngIf="data"> | ||
| <div class="cart_head"> | <div class="cart_head"> | ||
| <div class="nav_header"> | <div class="nav_header"> | ||
| <button | <ion-grid class="no-gutter"> | ||
| class="nav_btn nav_back_white floatLeft" | <ion-row class="no-gutter"> | ||
| (click)="goToPage('myorder')" | <ion-col class="no-gutter" size="2"> | ||
| > | <button class="nav_btn nav_back_white floatLeft" (click)="goToPage('myorder')"> | ||
| <img src="../assets/arrow_white.png" /> | <img src="../assets/arrow_white.png" /> | ||
| </button> | </button> | ||
| </ion-col> | |||
| <ion-col class="no-gutter" size="8"> | |||
| <div class="nav_title floatLeft"> | <div class="nav_title floatLeft"> | ||
| <h4></h4> | <h4></h4> | ||
| </div> | </div> | ||
| </ion-col> | |||
| <ion-col class="no-gutter" size="2"> | |||
| <button class="nav_btn floatRight"></button> | <button class="nav_btn floatRight"></button> | ||
| <div class="clear"></div> | </ion-col> | ||
| </ion-row> | |||
| </ion-grid> | |||
| </div> | </div> | ||
| <img onerror="this.src='../assets/[email protected]'" /> | <img onerror="this.src='../assets/[email protected]'" /> | ||
| <h4>ORDER CANCELLED</h4> | <h4>ORDER CANCELLED</h4> | ||
| ... | @@ -22,16 +28,12 @@ | ... | @@ -22,16 +28,12 @@ |
| <ul> | <ul> | ||
| <li (click)="goToPage('productlist')"> | <li (click)="goToPage('productlist')"> | ||
| <div class="nearby_image"> | <div class="nearby_image"> | ||
| <img | <img [src]="data.product[0].image" onerror="this.src='../assets/[email protected]'" /> | ||
| [src]="data.product[0].image" | |||
| onerror="this.src='../assets/[email protected]'" | |||
| /> | |||
| </div> | </div> | ||
| <div class="nearby_detail"> | <div class="nearby_detail"> | ||
| <h5> | <h5> | ||
| <span class="floatLeft">{{data.shopperName}}</span> | <span class="floatLeft">{{data.shopperName}}</span> | ||
| <span class="floatRight" | <span class="floatRight">4 | ||
| >4 | |||
| <img src="../assets/Path61_2.png" /> | <img src="../assets/Path61_2.png" /> | ||
| </span> | </span> | ||
| <div class="clear"></div> | <div class="clear"></div> | ||
| ... | @@ -53,9 +55,7 @@ | ... | @@ -53,9 +55,7 @@ |
| <h4>DELIVERY</h4> | <h4>DELIVERY</h4> | ||
| <h5 *ngIf="data.deliveryAddress"> | <h5 *ngIf="data.deliveryAddress"> | ||
| {{data.deliveryAddress.addressType}},<br />{{data.deliveryAddress.address}}, | {{data.deliveryAddress.addressType}},<br />{{data.deliveryAddress.address}}, | ||
| <br /> | <br /> {{data.deliveryAddress.building}}, <br /> {{data.deliveryAddress.landmark}} | ||
| {{data.deliveryAddress.building}}, <br /> | |||
| {{data.deliveryAddress.landmark}} | |||
| </h5> | </h5> | ||
| <!-- <button | <!-- <button | ||
| class="cancel_btn" | class="cancel_btn" | ||
| ... | ... |
| <ion-header> | <ion-header> | ||
| <div class="nav_header"> | <div class="nav_header"> | ||
| <ion-grid class="no-gutter"> | |||
| <ion-row class="no-gutter"> | |||
| <ion-col class="no-gutter" size="2"> | |||
| <ion-menu-toggle> | <ion-menu-toggle> | ||
| <button class="nav_btn nav_menu floatLeft"></button> | <button class="nav_btn nav_menu floatLeft"></button> | ||
| </ion-menu-toggle> | </ion-menu-toggle> | ||
| </ion-col> | |||
| <ion-col class="no-gutter" size="8"> | |||
| <div class="nav_title floatLeft"> | <div class="nav_title floatLeft"> | ||
| <img src="../../assets/Group [email protected]" /> | <img src="../../assets/Group [email protected]" /> | ||
| </div> | </div> | ||
| <div class="clear"></div> | </ion-col> | ||
| <ion-col class="no-gutter" size="2"></ion-col> | |||
| </ion-row> | |||
| </ion-grid> | |||
| </div> | </div> | ||
| </ion-header> | </ion-header> | ||
| ... | @@ -20,9 +28,10 @@ | ... | @@ -20,9 +28,10 @@ |
| <div class="profile_circle"> | <div class="profile_circle"> | ||
| <img [src]="loggedUser.profilePhoto" onerror="this.src='./../assets/asset_avatar.png'" /> | <img [src]="loggedUser.profilePhoto" onerror="this.src='./../assets/asset_avatar.png'" /> | ||
| <div class="edit"></div> | <div class="edit"> | ||
| <input type="file" accept="image/*;capture=camera" (change)="fileChange($event)" /> | <input type="file" accept="image/*;capture=camera" (change)="fileChange($event)" /> | ||
| </div> | </div> | ||
| </div> | |||
| <h5>{{loggedUser.name}}</h5> | <h5>{{loggedUser.name}}</h5> | ||
| <p (click)="istoggle()">LOGOUT</p> | <p (click)="istoggle()">LOGOUT</p> | ||
| ... | ... |
Please
register
or
sign in
to comment