Merge pull request #2798 from Safelite/feature/bugfix/CASH-1420
Feature/bugfix/cash-1420
This commit is contained in:
commit
bff216731a
3 changed files with 22 additions and 30 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
<div class="container page-container-grouped-styles">
|
<div class="container page-container-grouped-styles">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 col-md-10 col-lg-8 col-xl-7">
|
<div class="col-12 col-md-10 col-lg-8 col-xl-7">
|
||||||
<funnelSubHeader cmsWidgetName="FunnelSubHeaderWidget" />
|
<funnelSubHeader cmsWidgetName="FunnelSubHeaderWidget" alignLeft />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,25 @@
|
||||||
<template>
|
<template>
|
||||||
<Form @submit="onSubmit" @invalid-submit="onInvalidSubmit" ref="theForm" v-slot="{ meta }">
|
<Form @submit="onSubmit" @invalid-submit="onInvalidSubmit" ref="theForm" v-slot="{ meta }">
|
||||||
<loadingModal ref="loadingModal" />
|
<loadingModal ref="loadingModal" />
|
||||||
<div class="container-fluid page-container-grouped-styles">
|
<funnelHeader cmsWidgetName="FunnelHeaderWidget" ref="funnelHeader" />
|
||||||
<div class="row justify-content-center">
|
<div class="container page-container-grouped-styles">
|
||||||
<div class="col-md-6">
|
<div class="row">
|
||||||
<funnelHeader cmsWidgetName="FunnelHeaderWidget" ref="funnelHeader" />
|
<div class="col-12 col-md-10 col-lg-8 col-xl-7">
|
||||||
</div>
|
<funnelSubHeader
|
||||||
</div>
|
class="pt-4 pb-2"
|
||||||
<div class="row justify-content-center">
|
cmsWidgetName="FunnelSubHeaderWidget"
|
||||||
<div class="col-md-6 col-xl-4 mt-4">
|
alignLeft />
|
||||||
<funnelSubHeader class="pb-2" cmsWidgetName="FunnelSubHeaderWidget" />
|
<p class="select-option mb-2" v-html="SelectOptionText"></p>
|
||||||
<div>
|
|
||||||
<p class="header-copy mb-2 text-md-center" v-html="HeaderText"></p>
|
|
||||||
|
|
||||||
<p
|
|
||||||
class="header-sub-copy mb-5 text-md-center"
|
|
||||||
v-html="VinLookupQuestionText"></p>
|
|
||||||
|
|
||||||
<p class="select-option mb-2" v-html="SelectOptionText"></p>
|
|
||||||
|
|
||||||
<buttonQuestion
|
|
||||||
cmsWidgetName="VinLookupMethod"
|
|
||||||
:answers="answersFromCms"
|
|
||||||
groupName="vinLookupMethodOption"
|
|
||||||
buttonTypeString="listButton"
|
|
||||||
v-model="selectedVinLookupMethod"
|
|
||||||
isRequired
|
|
||||||
validationRules="option-required"
|
|
||||||
:logDisplayedValuesEvent="true" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
<buttonQuestion
|
||||||
|
cmsWidgetName="VinLookupMethod"
|
||||||
|
:answers="answersFromCms"
|
||||||
|
groupName="vinLookupMethodOption"
|
||||||
|
buttonTypeString="listButton"
|
||||||
|
v-model="selectedVinLookupMethod"
|
||||||
|
isRequired
|
||||||
|
validationRules="option-required"
|
||||||
|
:logDisplayedValuesEvent="true" />
|
||||||
<navbar
|
<navbar
|
||||||
cmsWidgetName="FunnelFooterWidget"
|
cmsWidgetName="FunnelFooterWidget"
|
||||||
ref="navbar"
|
ref="navbar"
|
||||||
|
|
@ -47,6 +37,7 @@
|
||||||
<script>
|
<script>
|
||||||
// Components
|
// Components
|
||||||
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
||||||
|
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
||||||
import navbar from "@/fmg-components/nav-bar/nav-bar";
|
import navbar from "@/fmg-components/nav-bar/nav-bar";
|
||||||
import buttonQuestion from "@/digital-components/button-question/button-question";
|
import buttonQuestion from "@/digital-components/button-question/button-question";
|
||||||
import loadingModal from "@/fmg-components/loading-modal/loading-modal.vue";
|
import loadingModal from "@/fmg-components/loading-modal/loading-modal.vue";
|
||||||
|
|
@ -255,6 +246,7 @@ export default {
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
funnelHeader,
|
funnelHeader,
|
||||||
|
funnelSubHeader,
|
||||||
navbar,
|
navbar,
|
||||||
buttonQuestion,
|
buttonQuestion,
|
||||||
Form,
|
Form,
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
<div class="container payment-method">
|
<div class="container payment-method">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 col-md-10 col-lg-8 col-xl-7">
|
<div class="col-12 col-md-10 col-lg-8 col-xl-7">
|
||||||
<funnelSubHeader class="mb-5" cmsWidgetName="FunnelSubHeaderWidget" />
|
<funnelSubHeader class="mb-5" cmsWidgetName="FunnelSubHeaderWidget" alignLeft />
|
||||||
|
|
||||||
<hr class="my-0" />
|
<hr class="my-0" />
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue