Added providerNumber datum and now nulling it out when service-zip changes from changing the mobile location zip

This commit is contained in:
Leah Schumann 2023-04-07 11:40:46 -04:00
parent 2be7770503
commit fd7c577df6

View file

@ -222,11 +222,11 @@ export default {
this.zipCode = newValue.addressQuestions.zipCode; this.zipCode = newValue.addressQuestions.zipCode;
this.isVehicleProtected = newValue.isVehicleProtected; this.isVehicleProtected = newValue.isVehicleProtected;
if ( if (newValue.zipCode !== this.zipCode) {
newValue.zipCode !== this.zipCode && if (!this.selectedAppointmentType == "Mobile") {
!this.selectedAppointmentType == "Mobile" this.selectedAppointmentType = null;
) { }
this.selectedAppointmentType = null; this.providerNumber = null;
} }
}, },
}, },