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>
|
||||
<alert
|
||||
class="my-4"
|
||||
cmsWidgetName="AlertQuoteReady"
|
||||
:cmsWidgetName="alertInfo"
|
||||
alertClass="alert-info"
|
||||
v-bind:isDismissible="false" />
|
||||
<div class="row my-2">
|
||||
|
|
@ -250,6 +250,11 @@ export default {
|
|||
skipVinLookup() {
|
||||
return this.isRepair || this.isVinOptionalVehicle;
|
||||
},
|
||||
alertInfo() {
|
||||
return this.isVinOptionalVehicle && !this.isRepair
|
||||
? "AlertQuoteVinOptional"
|
||||
: "AlertQuoteReady";
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
serviceZipCode() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue