prettier
This commit is contained in:
parent
7bd9b8ae20
commit
87614ce196
2 changed files with 22 additions and 10 deletions
|
|
@ -89,4 +89,4 @@ export const NON_MANAGED_SHOW_CLAIM_NUMBER_PARENTS = [
|
|||
export const PARENT_ACCOUNT_NUMBERS = {
|
||||
STATE_FARM: "711310",
|
||||
USAA: "900040",
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<div class="row">
|
||||
<div class="col-12 col-md-10 col-lg-8 col-xl-7">
|
||||
<funnelSubHeader class="pb-4" cmsWidgetName="FunnelSubHeaderWidget" />
|
||||
|
||||
|
||||
<textBlock
|
||||
cmsWidgetName="PageTitleWidget"
|
||||
typeStyle="h1"
|
||||
|
|
@ -28,7 +28,10 @@
|
|||
v-model="policyNumber"
|
||||
inputId="policyNumber"
|
||||
validationRules="policy-number-required" />
|
||||
<span v-if="displayPolicyHelperText" class="d-block mb-5 helper-text" v-html="policyHelperText"></span>
|
||||
<span
|
||||
v-if="displayPolicyHelperText"
|
||||
class="d-block mb-5 helper-text"
|
||||
v-html="policyHelperText"></span>
|
||||
|
||||
<datePickerPopup
|
||||
v-if="displayDateOfBirth"
|
||||
|
|
@ -144,7 +147,7 @@
|
|||
isRequired
|
||||
validationRules="subrogation-required"
|
||||
v-model="subrogationSelectedValue" />
|
||||
|
||||
|
||||
<dropdownQuestion
|
||||
v-if="displayLossState"
|
||||
class="mb-4"
|
||||
|
|
@ -185,7 +188,7 @@
|
|||
ref="morePolicyQuestions"
|
||||
cmsWidgetName="MorePolicyQuestionsWidget"
|
||||
v-model="morePolicyQuestions"
|
||||
groupName="MorePolicyQuestionsQuestion" />
|
||||
groupName="MorePolicyQuestionsQuestion" />
|
||||
|
||||
<navbar
|
||||
cmsWidgetName="FunnelFooterWidget"
|
||||
|
|
@ -194,7 +197,10 @@
|
|||
@back-clicked="backButtonAction"
|
||||
@ForwardClicked="forwardButtonAction" />
|
||||
|
||||
<span v-if="displayDisclaimerText" class="d-block mb-5 disclaimer-text" v-html="disclaimerText"></span>
|
||||
<span
|
||||
v-if="displayDisclaimerText"
|
||||
class="d-block mb-5 disclaimer-text"
|
||||
v-html="disclaimerText"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -284,10 +290,16 @@ export default {
|
|||
return this.clientConfig?.ClientLogoWidget?.Image || "";
|
||||
},
|
||||
pageTitleText() {
|
||||
return this.clientConfig?.PageTitleOverrideWidget?.Text || this.getCmsContent("PageTitleWidget", "Text");
|
||||
return (
|
||||
this.clientConfig?.PageTitleOverrideWidget?.Text ||
|
||||
this.getCmsContent("PageTitleWidget", "Text")
|
||||
);
|
||||
},
|
||||
pageInstructionsText() {
|
||||
return this.clientConfig?.PageInstructionsOverrideWidget?.Text || this.getCmsContent("PageInstructionsWidget", "Text");
|
||||
return (
|
||||
this.clientConfig?.PageInstructionsOverrideWidget?.Text ||
|
||||
this.getCmsContent("PageInstructionsWidget", "Text")
|
||||
);
|
||||
},
|
||||
isUSAA() {
|
||||
return (
|
||||
|
|
@ -341,7 +353,7 @@ export default {
|
|||
for (const answer of answers) {
|
||||
options[answer.Name] = answer.Text;
|
||||
}
|
||||
|
||||
|
||||
return options;
|
||||
},
|
||||
parsedClientConfig() {
|
||||
|
|
@ -539,4 +551,4 @@ export default {
|
|||
color: $gray-600;
|
||||
line-height: 1.625;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in a new issue