split alerts into 2 sections so some are before the header and some appear after per Figma
This commit is contained in:
parent
aafdfe7f5b
commit
cbf0315c17
1 changed files with 38 additions and 33 deletions
|
|
@ -5,48 +5,18 @@
|
||||||
<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">
|
||||||
<alert
|
|
||||||
ref="alertMilitaryBaseZip"
|
|
||||||
class="my-5"
|
|
||||||
cmsWidgetName="AlertMilitaryBaseZipWidget"
|
|
||||||
v-if="displayMilitaryZipAlert"
|
|
||||||
alertClass="alert-warning" />
|
|
||||||
<alert
|
|
||||||
ref="alertMobileOnly"
|
|
||||||
class="my-5"
|
|
||||||
cmsWidgetName="AlertMobileOnlyWidget"
|
|
||||||
v-if="displayServiceableMobileOnly"
|
|
||||||
alertClass="alert-warning" />
|
|
||||||
<alert
|
|
||||||
ref="alertRecalNoMobile"
|
|
||||||
class="my-5"
|
|
||||||
cmsWidgetName="AlertRecalNoMobileWidget"
|
|
||||||
v-if="displayRecalibrationWarning"
|
|
||||||
@text-link-clicked="openModalAction"
|
|
||||||
alertClass="alert-warning" />
|
|
||||||
<alert
|
|
||||||
ref="alertInshopOnly"
|
|
||||||
class="my-5"
|
|
||||||
cmsWidgetName="AlertInshopOnlyWidget"
|
|
||||||
v-if="displayServiceableInshopOnly"
|
|
||||||
alertClass="alert-warning" />
|
|
||||||
<alert
|
|
||||||
ref="alertNoShops"
|
|
||||||
class="my-5"
|
|
||||||
cmsWidgetName="AlertNoShopsWidget"
|
|
||||||
v-if="displayNoShopsAlert"
|
|
||||||
alertClass="alert-warning" />
|
|
||||||
<alert
|
<alert
|
||||||
ref="alertMobileFeeFree"
|
ref="alertMobileFeeFree"
|
||||||
class="my-5"
|
class="mb-5"
|
||||||
cmsWidgetName="AlertMobileFeeFreeWidget"
|
cmsWidgetName="AlertMobileFeeFreeWidget"
|
||||||
v-if="showMobileFreeAlert"
|
v-if="showMobileFreeAlert"
|
||||||
alertClass="alert-success" />
|
alertClass="alert-success" />
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row appointment-type">
|
<div class="row appointment-type">
|
||||||
<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="ScheduleYourServiceWidget" class="my-5" />
|
<funnelSubHeader cmsWidgetName="ScheduleYourServiceWidget" class="mb-5" />
|
||||||
<appointmentTypeQuestion
|
<appointmentTypeQuestion
|
||||||
v-model="appointmentTypeFromAppointmentTypeQuestion"
|
v-model="appointmentTypeFromAppointmentTypeQuestion"
|
||||||
v-show="isAppointmentTypeDisplayed"
|
v-show="isAppointmentTypeDisplayed"
|
||||||
|
|
@ -62,6 +32,41 @@
|
||||||
labelBold="true" />
|
labelBold="true" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 col-md-10 col-lg-8 col-xl-7">
|
||||||
|
<alert
|
||||||
|
ref="alertMobileOnly"
|
||||||
|
class="mb-5"
|
||||||
|
cmsWidgetName="AlertMobileOnlyWidget"
|
||||||
|
v-if="displayServiceableMobileOnly"
|
||||||
|
alertClass="alert-warning" />
|
||||||
|
<alert
|
||||||
|
ref="alertRecalNoMobile"
|
||||||
|
class="mb-5"
|
||||||
|
cmsWidgetName="AlertRecalNoMobileWidget"
|
||||||
|
v-if="displayRecalibrationWarning"
|
||||||
|
@text-link-clicked="openModalAction"
|
||||||
|
alertClass="alert-warning" />
|
||||||
|
<alert
|
||||||
|
ref="alertInshopOnly"
|
||||||
|
class="mb-5"
|
||||||
|
cmsWidgetName="AlertInshopOnlyWidget"
|
||||||
|
v-if="displayServiceableInshopOnly"
|
||||||
|
alertClass="alert-warning" />
|
||||||
|
<alert
|
||||||
|
ref="alertMilitaryBaseZip"
|
||||||
|
class="mb-5"
|
||||||
|
cmsWidgetName="AlertMilitaryBaseZipWidget"
|
||||||
|
v-if="displayMilitaryZipAlert"
|
||||||
|
alertClass="alert-warning" />
|
||||||
|
<alert
|
||||||
|
ref="alertNoShops"
|
||||||
|
class="mb-5"
|
||||||
|
cmsWidgetName="AlertNoShopsWidget"
|
||||||
|
v-if="displayNoShopsAlert"
|
||||||
|
alertClass="alert-warning" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div
|
<div
|
||||||
v-if="appointmentType && appointmentType === appointmentTypeStrings.MOBILE"
|
v-if="appointmentType && appointmentType === appointmentTypeStrings.MOBILE"
|
||||||
class="col-12 col-md-10 col-lg-8 col-xl-7">
|
class="col-12 col-md-10 col-lg-8 col-xl-7">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue