WIP add store info.
This commit is contained in:
parent
b0377459d5
commit
b24b33e5ed
1 changed files with 10 additions and 5 deletions
|
|
@ -53,8 +53,13 @@
|
||||||
<textBlock cmsWidgetName="CallOrTextWidget" justifyText="left" />
|
<textBlock cmsWidgetName="CallOrTextWidget" 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 class="mb-5" v-model="isRecalAckOptIn" />
|
<checkboxQuestion
|
||||||
<textBlock cmsWidgetName="RecalConfirmationWidget" justifyText="left" @text-link-clicked="openModal" />
|
class="mb-5"
|
||||||
|
v-model="isRecalAck" />
|
||||||
|
<textBlock
|
||||||
|
cmsWidgetName="RecalConfirmationWidget"
|
||||||
|
justifyText="left"
|
||||||
|
@text-link-clicked="openModal" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -332,7 +337,7 @@ export default {
|
||||||
availableVaps: [],
|
availableVaps: [],
|
||||||
paymentMethodInternalModel: this.getPaymentMethodFromStore(),
|
paymentMethodInternalModel: this.getPaymentMethodFromStore(),
|
||||||
inactivePromos: this.getInactivePromosFromStore(),
|
inactivePromos: this.getInactivePromosFromStore(),
|
||||||
isRecalAckOptIn: this.getIsRecalAckOptInFromStore(),
|
isRecalAck: this.getIsRecalAckFromStore(),
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
@ -402,8 +407,8 @@ export default {
|
||||||
|
|
||||||
return serviceLocationReqs && isInsuranceSet && scheduleReqs && customerReqs;
|
return serviceLocationReqs && isInsuranceSet && scheduleReqs && customerReqs;
|
||||||
},
|
},
|
||||||
getIsRecalAckOptInFromStore() {
|
getIsRecalAckFromStore() {
|
||||||
return store.getters.order.customer.isRecalAckOptIn;
|
return store.getters.order.customer.isRecalAck;
|
||||||
},
|
},
|
||||||
getPaymentMethodFromStore() {
|
getPaymentMethodFromStore() {
|
||||||
const piaType = store.getters.order.payment.piaType;
|
const piaType = store.getters.order.payment.piaType;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue