fix for unservicable.

This commit is contained in:
Bill Richardson 2026-02-25 15:04:26 -05:00
parent fce0ff3dad
commit 0c3515cef1

View file

@ -449,14 +449,19 @@ export default {
async processMobileZipCodeChange() { async processMobileZipCodeChange() {
showIssLoadingModal(true); showIssLoadingModal(true);
await this.updateMobileZip(); await this.updateMobileZip();
const updateMobileZipServiceLocationObj = {
mobileProviderNumber: this.mobileProviderNumber, if (!this.mobileZipError) {
provider: null, const updateMobileZipServiceLocationObj = {
refreshDatePicker: true, mobileProviderNumber: this.mobileProviderNumber,
zipCode: this.zipCode, provider: null,
zipCodeCtu: this.zipCodeCtu refreshDatePicker: true,
}; zipCode: this.zipCode,
this.$emit('mobile-zip-updated', updateMobileZipServiceLocationObj); zipCodeCtu: this.zipCodeCtu
};
this.$emit('mobile-zip-updated', updateMobileZipServiceLocationObj);
} else {
showIssLoadingModal(false);
}
}, },
setCtuForMobile(val) { setCtuForMobile(val) {
this.zipCodeCtu = val; this.zipCodeCtu = val;