diff --git a/src/views/address-check.vue b/src/views/address-check.vue index 6d5398e..10b0854 100644 --- a/src/views/address-check.vue +++ b/src/views/address-check.vue @@ -56,7 +56,7 @@ export default { }, checkIdAddressIsEligible: async function () { - const urlApi = '/php/api/v3/mmcm.php?street=' + encodeURI(this.store.street) + const urlApi = '/php/api/v3/mmcm.php?EXEC=getEligibility&street=' + encodeURI(this.store.street) + '&zip_code=' + this.store.zipCode + '&city=' + this.store.city @@ -68,6 +68,8 @@ export default { } }) + console.log(productList); + this.store.setProductList(productList); this.$router.push({path: '/delivery-option'}); } diff --git a/src/views/delivery-option.vue b/src/views/delivery-option.vue index b9f4f35..13c3824 100644 --- a/src/views/delivery-option.vue +++ b/src/views/delivery-option.vue @@ -3,6 +3,8 @@