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