refactoring WIP
This commit is contained in:
parent
ccee1c319d
commit
071bccb436
3 changed files with 2 additions and 8 deletions
|
|
@ -6,8 +6,6 @@ import routerParams from '@/router/router-constants/router-params';
|
|||
import { useMainStore } from '@/store';
|
||||
import vehicleCategories from '@/constants/vehicle-categories';
|
||||
import VehicleDamageComponent from '@/layouts/vehicle-damage/vehicle-damage.vue';
|
||||
import bailoutCode from '@/constants/bailoutCode';
|
||||
import issPageValues from '@/router/router-constants/issPage-values';
|
||||
|
||||
const mockRoute = {
|
||||
params: {}
|
||||
|
|
|
|||
|
|
@ -208,6 +208,7 @@ export default {
|
|||
},
|
||||
selectedWindshieldOptions: this.getWindshieldOptionsFromStore(),
|
||||
selectedRearReplaceOptions: this.getRearReplaceOptionsFromStore(),
|
||||
hasBailedOut: false
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
|
|
@ -295,9 +296,6 @@ export default {
|
|||
return this.$route.params[
|
||||
this.routerParams.DISPLAY_VEHICLE_CHANGE_ALERT
|
||||
];
|
||||
},
|
||||
hasBailedOut() {
|
||||
return false;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
|
|||
|
|
@ -117,6 +117,7 @@ export default {
|
|||
vin,
|
||||
forwardButtonCarStyle: '',
|
||||
vinPopulatedOnPageLoad: vin?.length > 0 && this.hasValidCarId(),
|
||||
hasBailedOut: false
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
|
|
@ -149,9 +150,6 @@ export default {
|
|||
},
|
||||
carIdIsValid() {
|
||||
return this.hasValidCarId();
|
||||
},
|
||||
hasBailedOut() {
|
||||
return false;
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue