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