vin lookup updates
This commit is contained in:
parent
de44f50d3a
commit
b0f5608b41
2 changed files with 18 additions and 8 deletions
|
|
@ -3,15 +3,20 @@
|
||||||
id="vin-lookup-alerts-wrapper"
|
id="vin-lookup-alerts-wrapper"
|
||||||
:class="wrapperCssClass">
|
:class="wrapperCssClass">
|
||||||
<vehicleNotFoundAlert
|
<vehicleNotFoundAlert
|
||||||
v-if="isVehicleNotFoundVisible" />
|
v-if="isVehicleNotFoundVisible"
|
||||||
|
class="mt-5" />
|
||||||
<twoIdenticalYMMVehicleAlert
|
<twoIdenticalYMMVehicleAlert
|
||||||
v-if="isTwoIdenticalYMMVehicleFoundVisible" />
|
v-if="isTwoIdenticalYMMVehicleFoundVisible"
|
||||||
|
class="mt-5" />
|
||||||
<vehicleNotMatchedAlert
|
<vehicleNotMatchedAlert
|
||||||
v-else-if="isVehicleNotMatchedVisible" />
|
v-else-if="isVehicleNotMatchedVisible"
|
||||||
|
class="mt-5" />
|
||||||
<perfectMatchAlert
|
<perfectMatchAlert
|
||||||
v-else-if="isPerfectMatchVisible" />
|
v-else-if="isPerfectMatchVisible"
|
||||||
|
class="mt-5" />
|
||||||
<noServiceAlert
|
<noServiceAlert
|
||||||
v-else-if="isNoServiceVisible" />
|
v-else-if="isNoServiceVisible"
|
||||||
|
class="mt-5" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
|
@ -66,3 +71,9 @@ export default {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
div.alert {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -13,13 +13,12 @@
|
||||||
<div class="select-car-form rounded">
|
<div class="select-car-form rounded">
|
||||||
<siteSubHeader
|
<siteSubHeader
|
||||||
cmsWidgetName="SiteSubHeaderWidget"
|
cmsWidgetName="SiteSubHeaderWidget"
|
||||||
class="mt-4"
|
class="mt-4" />
|
||||||
subHeaderMarginClasses="mt-1" />
|
|
||||||
<vinLookupAlerts
|
<vinLookupAlerts
|
||||||
class="mt-5"
|
|
||||||
:activeAlertType="activeVehicleLookupAlertType" />
|
:activeAlertType="activeVehicleLookupAlertType" />
|
||||||
<vinQuestion
|
<vinQuestion
|
||||||
v-model="vin"
|
v-model="vin"
|
||||||
|
class="mt-4"
|
||||||
:mask="vinMask"
|
:mask="vinMask"
|
||||||
:isDisabled="vinPopulatedOnPageLoad"
|
:isDisabled="vinPopulatedOnPageLoad"
|
||||||
textPosition="left" />
|
textPosition="left" />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue