diff --git a/src/layouts/vin-lookup/vin-lookup.vue b/src/layouts/vin-lookup/vin-lookup.vue index c5ddda85f..f0721b66c 100644 --- a/src/layouts/vin-lookup/vin-lookup.vue +++ b/src/layouts/vin-lookup/vin-lookup.vue @@ -11,7 +11,7 @@
- +
@@ -21,7 +21,7 @@
- +
@@ -85,12 +85,8 @@ :alertHeadline="PerfectMatchNewVinAlert.headline" :alertCopy="PerfectMatchNewVinAlert.copy" /> -
-
- -
-
{ - //vm.setCmsContent(resultMap.cmsContent); + vm.setCmsContent(resultMap.cmsContent); vm.noServiceZipWidget = { headline: resultMap.cmsContent.NoServiceZipWidget.HeadlineText, copy: resultMap.cmsContent.NoServiceZipWidget.BodyText, @@ -157,6 +153,10 @@ export default { headline: resultMap.cmsContent.MatchedDifferentVehicle.HeadlineText, copy: resultMap.cmsContent.MatchedDifferentVehicle.BodyText }; + vm.PerfectMatchNewVinAlert = { + headline: resultMap.cmsContent.PerfectMatchNewVinAlert.HeadlineText, + copy: resultMap.cmsContent.PerfectMatchNewVinAlert.BodyText + }; }); }, props: { @@ -164,13 +164,18 @@ export default { }, data() { return { + MatchedDifferentVehicle: false, + NoMatchAlertWidget: false, + PerfectMatchNewVinAlert: false, + NoServiceZipWidget: false, + VinFoundWidget: false, + VinFoundReadOnlyWidget: false, + FoundWindshieldAlert: false, newServiceZipRequired: false, - vinNotValid: false, - vinDoesNotMatchCarId: false, - licensePlate: '', + VinNotFound: false, + vin: '', zip: '', email: '', - serviceZip: '', }; }, methods: { diff --git a/src/router/router-constants/routing-table.js b/src/router/router-constants/routing-table.js index 20c8d97b3..620c788e2 100644 --- a/src/router/router-constants/routing-table.js +++ b/src/router/router-constants/routing-table.js @@ -60,7 +60,7 @@ const routingTable = [ }, { scenario: navigationScenarios.SELECTED_DAMAGE_WITH_SINGLE_PART, - destinationFmgPageValue: fmgPageValues.REVEAL + destinationFmgPageValue: fmgPageValues.VIN_LOOKUP, }, { scenario: navigationScenarios.SELECTED_DAMAGE_WITH_MULTIPLE_PARTS,