Prettified
This commit is contained in:
parent
75390dbfd4
commit
000b9a0b35
3 changed files with 9 additions and 10 deletions
|
|
@ -306,7 +306,7 @@ export default {
|
|||
storeActions.SAVE_SERVICE_LOCATION,
|
||||
{
|
||||
state: resultMap.serviceZipValidationResponse.state,
|
||||
zipCode: this.serviceZipCode,
|
||||
zipCode: this.serviceZipCode,
|
||||
zipCodeCtu: resultMap.serviceZipValidationResponse.zipCodeCtu,
|
||||
},
|
||||
false
|
||||
|
|
|
|||
|
|
@ -326,7 +326,7 @@ export default {
|
|||
storeActions.SAVE_SERVICE_ZIP_CODE_INFO,
|
||||
{
|
||||
state: resultMap.zipCodeData.state,
|
||||
zipCode: this.serviceZipCode,
|
||||
zipCode: this.serviceZipCode,
|
||||
zipCodeCtu: resultMap.zipCodeData.zipCodeCtu,
|
||||
},
|
||||
false
|
||||
|
|
@ -353,7 +353,7 @@ export default {
|
|||
address: vehicleRegistrationInfo.address,
|
||||
city: vehicleRegistrationInfo.city,
|
||||
state: vehicleRegistrationInfo.state,
|
||||
zipCode: vehicleRegistrationInfo.zipCode,
|
||||
zipCode: vehicleRegistrationInfo.zipCode,
|
||||
zipCodeCtu: zipCodeData.zipCodeCtu,
|
||||
},
|
||||
false
|
||||
|
|
@ -363,7 +363,7 @@ export default {
|
|||
storeActions.SAVE_SERVICE_ZIP_CODE_INFO,
|
||||
{
|
||||
state: zipCodeData.state,
|
||||
zipCode: this.serviceZipCode,
|
||||
zipCode: this.serviceZipCode,
|
||||
zipCodeCtu: zipCodeData.zipCodeCtu,
|
||||
},
|
||||
false
|
||||
|
|
|
|||
|
|
@ -259,10 +259,9 @@ export const mutations = {
|
|||
streetAddress: serviceLocationInfo.provider?.address?.streetAddress,
|
||||
city: serviceLocationInfo.provider?.address?.city,
|
||||
state: serviceLocationInfo.provider?.address?.state,
|
||||
zip: serviceLocationInfo.provider?.address?.zip
|
||||
}
|
||||
}
|
||||
|
||||
zip: serviceLocationInfo.provider?.address?.zip,
|
||||
},
|
||||
};
|
||||
},
|
||||
updateSchedule(state, scheduleInfo) {
|
||||
if (scheduleInfo) {
|
||||
|
|
@ -375,8 +374,8 @@ export const mutations = {
|
|||
streetAddress: null,
|
||||
city: null,
|
||||
state: null,
|
||||
zip: null
|
||||
}
|
||||
zip: null,
|
||||
},
|
||||
};
|
||||
},
|
||||
resetServiceLocationMobileAddress(state) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue