fix for unservicable.
This commit is contained in:
parent
fce0ff3dad
commit
0c3515cef1
1 changed files with 13 additions and 8 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue