Removing comments
This commit is contained in:
parent
501cdb4a01
commit
16c4bd4732
3 changed files with 0 additions and 9 deletions
|
|
@ -157,7 +157,6 @@ export default {
|
|||
return this.modelValue;
|
||||
},
|
||||
set(newValue) {
|
||||
console.log('set happened');
|
||||
this.$emit('update:modelValue', newValue);
|
||||
}
|
||||
},
|
||||
|
|
@ -188,9 +187,7 @@ export default {
|
|||
},
|
||||
watch: {
|
||||
async value(newValue) {
|
||||
console.log('watch triggered');
|
||||
const result = await validate(newValue, this.validationRules); // do a test validation check, without triggering full validation
|
||||
console.log(JSON.stringify(result));
|
||||
if (result.valid) {
|
||||
this.handleChange(newValue); // trigger full validation on this field only
|
||||
}
|
||||
|
|
|
|||
|
|
@ -104,7 +104,6 @@ export default {
|
|||
this.additionalButtonData
|
||||
.availabilityRatingCallback(startDate, endDate, shopAppointmentType, this.value)
|
||||
.then((data) => {
|
||||
console.log(`data: ${JSON.stringify(data)}`);
|
||||
this.availabilityRating = data;
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -152,9 +152,6 @@ export default {
|
|||
const tpaProvidersRadius100 = await useMainStore().getTpaProviders(zipCode, radiusOptions[2]);
|
||||
let radius = '25 miles';
|
||||
|
||||
console.log(`25: ${JSON.stringify(tpaProvidersRadius25)}`);
|
||||
console.log(`100: ${JSON.stringify(tpaProvidersRadius100)}`);
|
||||
|
||||
let providers = tpaProvidersRadius25;
|
||||
if ((tpaProvidersRadius25?.data ?? []).length === 0) {
|
||||
radius = '50 miles';
|
||||
|
|
@ -166,8 +163,6 @@ export default {
|
|||
}
|
||||
|
||||
next((vm) => {
|
||||
console.log('in next');
|
||||
console.log(radius);
|
||||
vm.setCmsContent(resultMap.cmsContent);
|
||||
vm.setFilter(radius);
|
||||
vm.setProviders(providers);
|
||||
|
|
|
|||
Loading…
Reference in a new issue