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 = {
|
export const PARENT_ACCOUNT_NUMBERS = {
|
||||||
STATE_FARM: "711310",
|
STATE_FARM: "711310",
|
||||||
USAA: "900040",
|
USAA: "900040",
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 col-md-10 col-lg-8 col-xl-7">
|
<div class="col-12 col-md-10 col-lg-8 col-xl-7">
|
||||||
<funnelSubHeader class="pb-4" cmsWidgetName="FunnelSubHeaderWidget" />
|
<funnelSubHeader class="pb-4" cmsWidgetName="FunnelSubHeaderWidget" />
|
||||||
|
|
||||||
<textBlock
|
<textBlock
|
||||||
cmsWidgetName="PageTitleWidget"
|
cmsWidgetName="PageTitleWidget"
|
||||||
typeStyle="h1"
|
typeStyle="h1"
|
||||||
|
|
@ -28,7 +28,10 @@
|
||||||
v-model="policyNumber"
|
v-model="policyNumber"
|
||||||
inputId="policyNumber"
|
inputId="policyNumber"
|
||||||
validationRules="policy-number-required" />
|
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
|
<datePickerPopup
|
||||||
v-if="displayDateOfBirth"
|
v-if="displayDateOfBirth"
|
||||||
|
|
@ -144,7 +147,7 @@
|
||||||
isRequired
|
isRequired
|
||||||
validationRules="subrogation-required"
|
validationRules="subrogation-required"
|
||||||
v-model="subrogationSelectedValue" />
|
v-model="subrogationSelectedValue" />
|
||||||
|
|
||||||
<dropdownQuestion
|
<dropdownQuestion
|
||||||
v-if="displayLossState"
|
v-if="displayLossState"
|
||||||
class="mb-4"
|
class="mb-4"
|
||||||
|
|
@ -185,7 +188,7 @@
|
||||||
ref="morePolicyQuestions"
|
ref="morePolicyQuestions"
|
||||||
cmsWidgetName="MorePolicyQuestionsWidget"
|
cmsWidgetName="MorePolicyQuestionsWidget"
|
||||||
v-model="morePolicyQuestions"
|
v-model="morePolicyQuestions"
|
||||||
groupName="MorePolicyQuestionsQuestion" />
|
groupName="MorePolicyQuestionsQuestion" />
|
||||||
|
|
||||||
<navbar
|
<navbar
|
||||||
cmsWidgetName="FunnelFooterWidget"
|
cmsWidgetName="FunnelFooterWidget"
|
||||||
|
|
@ -194,7 +197,10 @@
|
||||||
@back-clicked="backButtonAction"
|
@back-clicked="backButtonAction"
|
||||||
@ForwardClicked="forwardButtonAction" />
|
@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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -284,10 +290,16 @@ export default {
|
||||||
return this.clientConfig?.ClientLogoWidget?.Image || "";
|
return this.clientConfig?.ClientLogoWidget?.Image || "";
|
||||||
},
|
},
|
||||||
pageTitleText() {
|
pageTitleText() {
|
||||||
return this.clientConfig?.PageTitleOverrideWidget?.Text || this.getCmsContent("PageTitleWidget", "Text");
|
return (
|
||||||
|
this.clientConfig?.PageTitleOverrideWidget?.Text ||
|
||||||
|
this.getCmsContent("PageTitleWidget", "Text")
|
||||||
|
);
|
||||||
},
|
},
|
||||||
pageInstructionsText() {
|
pageInstructionsText() {
|
||||||
return this.clientConfig?.PageInstructionsOverrideWidget?.Text || this.getCmsContent("PageInstructionsWidget", "Text");
|
return (
|
||||||
|
this.clientConfig?.PageInstructionsOverrideWidget?.Text ||
|
||||||
|
this.getCmsContent("PageInstructionsWidget", "Text")
|
||||||
|
);
|
||||||
},
|
},
|
||||||
isUSAA() {
|
isUSAA() {
|
||||||
return (
|
return (
|
||||||
|
|
@ -341,7 +353,7 @@ export default {
|
||||||
for (const answer of answers) {
|
for (const answer of answers) {
|
||||||
options[answer.Name] = answer.Text;
|
options[answer.Name] = answer.Text;
|
||||||
}
|
}
|
||||||
|
|
||||||
return options;
|
return options;
|
||||||
},
|
},
|
||||||
parsedClientConfig() {
|
parsedClientConfig() {
|
||||||
|
|
@ -539,4 +551,4 @@ export default {
|
||||||
color: $gray-600;
|
color: $gray-600;
|
||||||
line-height: 1.625;
|
line-height: 1.625;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue