WIP
This commit is contained in:
parent
e658bdb9bf
commit
b97833d3bd
1 changed files with 11 additions and 4 deletions
|
|
@ -55,9 +55,12 @@
|
||||||
justifyText="left" />
|
justifyText="left" />
|
||||||
<hr class="my-5" />
|
<hr class="my-5" />
|
||||||
<div class="d-flex flex-row checkbox-group">
|
<div class="d-flex flex-row checkbox-group">
|
||||||
<checkboxQuestion
|
<checkboxQuestion
|
||||||
class="mb-5"
|
class="mb-5"
|
||||||
cmsWidgetName="RecalUnderstandCopyWidget" />
|
v-model="isRecalAckOptIn" />
|
||||||
|
<textBlock
|
||||||
|
cmsWidgetName="RecalConfirmationWidget"
|
||||||
|
justifyText="left" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -111,7 +114,7 @@ import { storeActions } from "@/constants/store-actions";
|
||||||
import store from "@/store";
|
import store from "@/store";
|
||||||
import { fetchCmsContentForPage,
|
import { fetchCmsContentForPage,
|
||||||
doesCopyContainRouterLink,
|
doesCopyContainRouterLink,
|
||||||
getRouterLinkRouteFromCopy, }
|
getRouterLinkRouteFromCopy }
|
||||||
from "@/helpers/cms-content-helper";
|
from "@/helpers/cms-content-helper";
|
||||||
import { paymentMethods } from "@/constants/payment-method-constants";
|
import { paymentMethods } from "@/constants/payment-method-constants";
|
||||||
import { experimentSettings } from "@/constants/experiments";
|
import { experimentSettings } from "@/constants/experiments";
|
||||||
|
|
@ -335,6 +338,7 @@ export default {
|
||||||
availableVaps: [],
|
availableVaps: [],
|
||||||
paymentMethodInternalModel: this.getPaymentMethodFromStore(),
|
paymentMethodInternalModel: this.getPaymentMethodFromStore(),
|
||||||
inactivePromos: this.getInactivePromosFromStore(),
|
inactivePromos: this.getInactivePromosFromStore(),
|
||||||
|
isRecalAckOptIn: this.getIsRecalAckOptInFromStore(),
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
@ -404,6 +408,9 @@ export default {
|
||||||
|
|
||||||
return serviceLocationReqs && isInsuranceSet && scheduleReqs && customerReqs;
|
return serviceLocationReqs && isInsuranceSet && scheduleReqs && customerReqs;
|
||||||
},
|
},
|
||||||
|
getIsRecalAckOptInFromStore() {
|
||||||
|
return store.getters.order.customer.isRecalAckOptIn;
|
||||||
|
},
|
||||||
getPaymentMethodFromStore() {
|
getPaymentMethodFromStore() {
|
||||||
const piaType = store.getters.order.payment.piaType;
|
const piaType = store.getters.order.payment.piaType;
|
||||||
const isPia = store.getters.order.payment.isPia && !!piaType;
|
const isPia = store.getters.order.payment.isPia && !!piaType;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue