This commit is contained in:
Katie Kroell 2024-01-25 12:03:28 -05:00
parent 7644a5c04e
commit bf91aabac0

View file

@ -7,10 +7,11 @@
<div class="page-container-grouped-styles">
<div class="fade-on-route-transition position-relative">
<siteHeader
ref="tpaConfirmationSiteHeader"
ref="siteHeader"
cmsWidgetName="SiteHeaderWidget" />
<div class="container-fluid px-5 pb-2 confirmation">
<vehicleBanner
ref="vehicleBanner"
class="mb-4"
cmsWidgetName="VehicleBannerWidget"
:displayGenericVehicleImage="false" />
@ -45,8 +46,8 @@
:customText="orderDetailsTitle"
:marginTopSizeOverride="4" />
<textBlock
id="tpaSubmitOrderDetailsBody"
ref="tpaSubmitOrderDetailsBody"
id="tpaConfirmationOrderDetailsBody"
ref="tpaConfirmationOrderDetailsBody"
:customText="orderDetailsBody"
:marginTopSizeOverride="4"
class="mb-4 small" />
@ -159,7 +160,13 @@ export default {
return useMainStore().order.currentDeductible;
},
deductibleBoxValue() {
return this.isVerified ? this.formatAmountInDollars(this.currentDeductible) : VERIFYING_COVERAGE;
const testVerified = this.isVerified;
const testString = VERIFYING_COVERAGE;
if (!testVerified) {
return testString;
}
// return this.isVerified ? this.formatAmountInDollars(this.currentDeductible) : VERIFYING_COVERAGE;
return this.formatAmountInDollars(this.currentDeductible);
},
tpaConfirmationHeaderText() {
return this.getCmsContent('TPAConfirmationContent', 'HeaderText');
@ -184,7 +191,7 @@ export default {
}
},
mounted() {
this.$refs.siteFooter?.updateButtonText(`Go back to ${this.carrierName}`);
this.$refs.siteFooter.updateButtonText(`Go back to ${this.carrierName}`);
},
methods:
{