Added providerNumber datum and now nulling it out when service-zip changes from changing the mobile location zip
This commit is contained in:
parent
2be7770503
commit
fd7c577df6
1 changed files with 5 additions and 5 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue