Added providerNumber datum and now nulling it out when service-zip changes

This commit is contained in:
Leah Schumann 2023-04-07 11:22:06 -04:00
parent 34ca460d50
commit 2be7770503

View file

@ -135,6 +135,7 @@ export default {
mobileFeePart: null, mobileFeePart: null,
zipContainsMilitaryBase: false, zipContainsMilitaryBase: false,
selectedAppointmentType: null, selectedAppointmentType: null,
providerNumber: null,
}; };
}, },
async beforeRouteEnter(to, from, next) { async beforeRouteEnter(to, from, next) {
@ -192,6 +193,7 @@ export default {
if (newValue.zipCode !== this.zipCode) { if (newValue.zipCode !== this.zipCode) {
this.resetMobileLocation(); this.resetMobileLocation();
this.selectedAppointmentType = null; this.selectedAppointmentType = null;
this.providerNumber = null;
} }
this.state = newValue.state; this.state = newValue.state;