WIP test with Carl.
This commit is contained in:
parent
8950d91493
commit
e658bdb9bf
1 changed files with 12 additions and 6 deletions
|
|
@ -45,7 +45,7 @@
|
|||
v-bind:isDismissible="false" />
|
||||
</div>
|
||||
|
||||
<div v-if="hasRecal" class="questions-about-service my-5">
|
||||
<div v-if="hasRecal && !isInsurance" class="questions-about-service my-5">
|
||||
<textBlock
|
||||
cmsWidgetName="QuestionsAboutYourServiceWidget"
|
||||
justifyText="left"
|
||||
|
|
@ -56,10 +56,8 @@
|
|||
<hr class="my-5" />
|
||||
<div class="d-flex flex-row checkbox-group">
|
||||
<checkboxQuestion
|
||||
class="mb-5 mt-2" />
|
||||
<textBlock
|
||||
cmsWidgetName="RecalUnderstandWidget"
|
||||
justifyText="left" />
|
||||
class="mb-5"
|
||||
cmsWidgetName="RecalUnderstandCopyWidget" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -111,7 +109,10 @@ import baseMixin from "@/mixins/base-mixin.js";
|
|||
import { settleAllPromises } from "@/helpers/layout-helper";
|
||||
import { storeActions } from "@/constants/store-actions";
|
||||
import store from "@/store";
|
||||
import { fetchCmsContentForPage } from "@/helpers/cms-content-helper";
|
||||
import { fetchCmsContentForPage,
|
||||
doesCopyContainRouterLink,
|
||||
getRouterLinkRouteFromCopy, }
|
||||
from "@/helpers/cms-content-helper";
|
||||
import { paymentMethods } from "@/constants/payment-method-constants";
|
||||
import { experimentSettings } from "@/constants/experiments";
|
||||
import {
|
||||
|
|
@ -337,6 +338,11 @@ export default {
|
|||
};
|
||||
},
|
||||
methods: {
|
||||
doesCopyContainRouterLink,
|
||||
getRouterLinkRouteFromCopy,
|
||||
navigateWithScenario(scenarioName) {
|
||||
this.$router.navigateWithoutSaving(scenarioName, this.$route);
|
||||
},
|
||||
arePagePrerequisitesValid() {
|
||||
// Service Location
|
||||
const serviceLocation = store.getters.order.serviceLocation;
|
||||
|
|
|
|||
Loading…
Reference in a new issue