SSR-1116. Order Confirmation page: Add UI element for email confirmation. (#595)
This commit is contained in:
parent
5a73395a0f
commit
24496fe9b2
1 changed files with 15 additions and 0 deletions
|
|
@ -47,6 +47,9 @@
|
|||
v-html="appointmentWordingText2">
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="email-confirmation-text"
|
||||
v-html="confirmationEmailText" />
|
||||
<siteFooter
|
||||
v-if="carrierUrl"
|
||||
ref="siteFooter"
|
||||
|
|
@ -118,6 +121,11 @@ export default {
|
|||
carrierUrl() {
|
||||
return this.mainStore.issConfig.successReturnURL;
|
||||
},
|
||||
confirmationEmailText() {
|
||||
return this.getCmsContent('EmailConfirmationWordingWidget', 'BodyText')
|
||||
?.replaceAll('<', '<')
|
||||
?.replaceAll('>', '>');
|
||||
},
|
||||
orderConfirmationHeaderText() {
|
||||
return this.getCmsContent('OrderConfirmationContent', 'HeaderText');
|
||||
},
|
||||
|
|
@ -338,4 +346,11 @@ $page-side-padding: 1.5rem;
|
|||
color: $black;
|
||||
}
|
||||
}
|
||||
|
||||
.email-confirmation-text {
|
||||
:deep(a) {
|
||||
font-weight: $font-weight-bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in a new issue