cart
Showing
| ... | ... | @@ -23,6 +23,7 @@ |
| "@angular/platform-browser": "~8.1.2", | ||
| "@angular/platform-browser-dynamic": "~8.1.2", | ||
| "@angular/router": "~8.1.2", | ||
| "@ionic-native/call-number": "^5.21.4", | ||
| "@ionic-native/core": "^5.19.1", | ||
| "@ionic-native/geolocation": "^5.19.1", | ||
| "@ionic-native/google-plus": "^5.19.1", | ||
| ... | ... | @@ -34,6 +35,7 @@ |
| "@ionic/storage": "^2.2.0", | ||
| "@types/googlemaps": "^3.39.2", | ||
| "agm-direction": "^0.7.9", | ||
| "call-number": "^1.0.1", | ||
| "cordova-android": "8.0.0", | ||
| "cordova-plugin-device": "^2.0.3", | ||
| "cordova-plugin-geolocation": "^4.0.2", | ||
| ... | ... | @@ -102,7 +104,8 @@ |
| }, | ||
| "cordova-plugin-x-socialsharing": { | ||
| "ANDROID_SUPPORT_V4_VERSION": "24.1.1+" | ||
| } | ||
| }, | ||
| "mx.ferreyra.callnumber": {} | ||
| }, | ||
| "platforms": [ | ||
| "android" | ||
| ... | ... |
src/app/contact/contact.module.ts
0 → 100644
src/app/contact/contact.page.html
0 → 100644
src/app/contact/contact.page.scss
0 → 100644
src/app/contact/contact.page.spec.ts
0 → 100644
src/app/contact/contact.page.ts
0 → 100644
| ... | ... | @@ -59,12 +59,16 @@ |
| <ul> | ||
| <li (click)="goToPage('productlist')"> | ||
| <div class="nearby_image"> | ||
| <img [src]="data.product[0].image" onerror="this.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">{{data.product[0].qty}} | ||
| <span class="floatRight" | ||
| >{{data.product[0].qty}} | ||
| <img src="../assets/Path61_2.png" /> | ||
| </span> | ||
| <div class="clear"></div> | ||
| ... | ... | @@ -82,7 +86,8 @@ |
| </h6> | ||
| <h5>Quantity : <span>{{product.qty}}</span></h5> | ||
| <h5> | ||
| Amount : <strong>A$ {{product.price}}</strong><span class="afterpay">COD</span> | ||
| Amount : <strong>A$ {{product.price}}</strong | ||
| ><span class="afterpay">COD</span> | ||
| </h5> | ||
| <h5 *ngIf="data.orderStatus >= 3 && data.orderStatus < 7"> | ||
| Delivery time : <span>{{deliveryTime}}</span> | ||
| ... | ... | @@ -90,15 +95,26 @@ |
| <h5>Order Status : <span>{{getStatus(data.orderStatus)}}</span></h5> | ||
| <div class="delivery-wrap"> | ||
| <h4 class="floatLeft">DELIVERY</h4> | ||
| <span class="floatRight"><img class="ng-tns-c3-0" src="../../assets/edit.png" | ||
| (click)="goToPage('changeaddress')"></span> | ||
| <span class="floatRight" | ||
| ><img | ||
| class="ng-tns-c3-0" | ||
| src="../../assets/edit.png" | ||
| (click)="goToPage('changeaddress')" | ||
| /></span> | ||
| <div class="clear"></div> | ||
| </div> | ||
| <h5 *ngIf="data.deliveryAddress"> | ||
| {{data.deliveryAddress.addressType}},<br />{{data.deliveryAddress.address}}, | ||
| <br /> {{data.deliveryAddress.building}}, <br /> {{data.deliveryAddress.landmark}} | ||
| <br /> | ||
| {{data.deliveryAddress.building}}, <br /> | ||
| {{data.deliveryAddress.landmark}} | ||
| </h5> | ||
| <button class="cancel_btn" (click)="cancellOrder(data.orderId)" *ngIf="cancelDelivery > 0 && data.orderStatus != 0 && data.orderStatus != 8"> | ||
| <button | ||
| class="cancel_btn" | ||
| (click)="goToPage('contact')" | ||
| *ngIf="cancelDelivery > 0 && data.orderStatus != 0 && data.orderStatus != 8" | ||
| > | ||
| CANCEL THIS ORDER | ||
| </button> | ||
| <!-- <hr /> --> | ||
| ... | ... |
src/config/contact.service.ts
0 → 100644
src/config/services/contact.ts
0 → 100644
Please
register
or
sign in
to comment