CSR-944 vin optional alert info
This commit is contained in:
parent
7a2faf84ad
commit
fd5db4e206
1 changed files with 6 additions and 1 deletions
|
|
@ -22,7 +22,7 @@
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<alert
|
<alert
|
||||||
class="my-4"
|
class="my-4"
|
||||||
cmsWidgetName="AlertQuoteReady"
|
:cmsWidgetName="alertInfo"
|
||||||
alertClass="alert-info"
|
alertClass="alert-info"
|
||||||
v-bind:isDismissible="false" />
|
v-bind:isDismissible="false" />
|
||||||
<div class="row my-2">
|
<div class="row my-2">
|
||||||
|
|
@ -250,6 +250,11 @@ export default {
|
||||||
skipVinLookup() {
|
skipVinLookup() {
|
||||||
return this.isRepair || this.isVinOptionalVehicle;
|
return this.isRepair || this.isVinOptionalVehicle;
|
||||||
},
|
},
|
||||||
|
alertInfo() {
|
||||||
|
return this.isVinOptionalVehicle && !this.isRepair
|
||||||
|
? "AlertQuoteVinOptional"
|
||||||
|
: "AlertQuoteReady";
|
||||||
|
},
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
serviceZipCode() {
|
serviceZipCode() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue