Prettified
This commit is contained in:
parent
c428852f4b
commit
1a1575ad43
1 changed files with 5 additions and 6 deletions
|
|
@ -47,12 +47,12 @@
|
|||
</div>
|
||||
|
||||
<paymentMethodQuestion
|
||||
v-if="isPiaEnabled && totalAmountDue > 0.00"
|
||||
v-if="isPiaEnabled && totalAmountDue > 0.0"
|
||||
v-model="paymentMethodInternalModel"
|
||||
validationRules="option-required" />
|
||||
|
||||
<alert
|
||||
v-if="!isPiaEnabled && totalAmountDue > 0.00"
|
||||
v-if="!isPiaEnabled && totalAmountDue > 0.0"
|
||||
:isDismissible="false"
|
||||
alertClass="alert-info"
|
||||
cmsWidgetName="NoPiaDisclaimerWidget"
|
||||
|
|
@ -513,7 +513,6 @@ export default {
|
|||
hasSubmittedOrder() {
|
||||
return this.$store.getters.hasSubmittedOrder;
|
||||
},
|
||||
|
||||
},
|
||||
computed: {
|
||||
damageInfo() {
|
||||
|
|
@ -574,7 +573,7 @@ export default {
|
|||
}
|
||||
},
|
||||
totalAmountDue() {
|
||||
return baseMixin.methods.getAmountDue(this.lineItems)
|
||||
return baseMixin.methods.getAmountDue(this.lineItems);
|
||||
},
|
||||
isPiaEnabled() {
|
||||
const piaExperience = this.getSettingValue(experimentSettings.PIA_EXPERIENCE);
|
||||
|
|
@ -584,7 +583,7 @@ export default {
|
|||
if (this.isInsurance) {
|
||||
return piaInsurance === "true";
|
||||
} else {
|
||||
return piaExperience === "PIA Optional" || piaExperience === "PIA Required";
|
||||
return piaExperience === "PIA Optional" || piaExperience === "PIA Required";
|
||||
}
|
||||
},
|
||||
paymentMethod() {
|
||||
|
|
@ -646,7 +645,7 @@ export default {
|
|||
},
|
||||
},
|
||||
components: {
|
||||
funnelHeader,
|
||||
funnelHeader,
|
||||
navbar,
|
||||
funnelSubHeader,
|
||||
Form,
|
||||
|
|
|
|||
Loading…
Reference in a new issue