From ca7f33285bb04209a3b82750e5209c901e90e393 Mon Sep 17 00:00:00 2001 From: Sandesh Ratnawat Date: Thu, 20 Jun 2024 21:16:36 +0530 Subject: [PATCH] Added: address and city of the pickup stores --- src/views/PickupLocationModal.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/views/PickupLocationModal.vue b/src/views/PickupLocationModal.vue index 9bbbb544..cbec4f08 100644 --- a/src/views/PickupLocationModal.vue +++ b/src/views/PickupLocationModal.vue @@ -29,7 +29,12 @@ - {{ store.facilityName }} + + {{ store.facilityName }} +

{{ store.address1 }}{{ store.address2 }} + {{ store.city }} +

+
{{ store.distance }} {{ $t("mi") }}
@@ -125,7 +130,7 @@ export default defineComponent({ async getStores(point?: string) { let payload = { "viewSize": process.env.VUE_APP_VIEW_SIZE, - "filters": ["storeType: RETAIL_STORE", "pickup_pref: true"] + "filters": ["storeType: RETAIL_STORE"] } as any if (point) {