commit
1b07d41db8
1 changed files with 17 additions and 6 deletions
|
|
@ -98,15 +98,11 @@
|
||||||
linkWidgetName="ServiceZipLinkWidget"
|
linkWidgetName="ServiceZipLinkWidget"
|
||||||
modalWidgetName="ServiceZipModalWidget" />
|
modalWidgetName="ServiceZipModalWidget" />
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div class="row your-shop-location" v-if="showInshopComponent">
|
||||||
class="row your-shop-location"
|
|
||||||
v-if="appointmentType && appointmentType !== appointmentTypeStrings.MOBILE">
|
|
||||||
<div class="col-12 col-md-10 col-lg-8 col-xl-7">
|
<div class="col-12 col-md-10 col-lg-8 col-xl-7">
|
||||||
<div>
|
<div>
|
||||||
<shopLocation
|
<shopLocation
|
||||||
v-if="
|
v-if="showInshopComponent"
|
||||||
appointmentType && appointmentType !== appointmentTypeStrings.MOBILE
|
|
||||||
"
|
|
||||||
:selectedShop="selectedShopAnswer"
|
:selectedShop="selectedShopAnswer"
|
||||||
:selectedProviderNumberFromParent="selectedProvider?.providerNumber"
|
:selectedProviderNumberFromParent="selectedProvider?.providerNumber"
|
||||||
:shopProviderDataFromParent="shopProviderData"
|
:shopProviderDataFromParent="shopProviderData"
|
||||||
|
|
@ -630,6 +626,21 @@ export default {
|
||||||
this.handleZipCodeChange(newValue);
|
this.handleZipCodeChange(newValue);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
showInshopComponent() {
|
||||||
|
// If we get no inshop or mobile data, then show the shoplocation component so the user is not
|
||||||
|
// looking at a half blank screen with no way to try another zip/location.
|
||||||
|
if (
|
||||||
|
(this.inshopTimeSlotsData === undefined &&
|
||||||
|
this.mobileTimeSlotsData === undefined) ||
|
||||||
|
(this.inshopTimeSlotsData.days.length === 0 &&
|
||||||
|
this.mobileTimeSlotsData.days.length === 0) ||
|
||||||
|
(this.appointmentType && this.appointmentType !== AppointmentTypeStrings.MOBILE)
|
||||||
|
) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
},
|
||||||
isMobileSelected() {
|
isMobileSelected() {
|
||||||
return (
|
return (
|
||||||
this.appointmentType == AppointmentTypeStrings.MOBILE ||
|
this.appointmentType == AppointmentTypeStrings.MOBILE ||
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue