WIP
This commit is contained in:
parent
dc5b9977d9
commit
f3bf9b93c5
2 changed files with 11 additions and 1 deletions
|
|
@ -344,6 +344,12 @@ export default {
|
||||||
isRepair() {
|
isRepair() {
|
||||||
return this.mainStore.order.damage.isRepair;
|
return this.mainStore.order.damage.isRepair;
|
||||||
}
|
}
|
||||||
|
// unverifiedADASReplace() {
|
||||||
|
// return this.isUnverifiedVisible && this.isADAS && !this.isRepair;
|
||||||
|
// },
|
||||||
|
// unverifiedNonADASReplace() {
|
||||||
|
// return this.isUnverifiedVisible && !this.isADAS && !this.isRepair;
|
||||||
|
// }
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
selectedProvider() {
|
selectedProvider() {
|
||||||
|
|
@ -470,6 +476,10 @@ export default {
|
||||||
return (
|
return (
|
||||||
this.isDeductibleVisible && this.deductibleValue === 0
|
this.isDeductibleVisible && this.deductibleValue === 0
|
||||||
);
|
);
|
||||||
|
case 'unverifiedADASReplace':
|
||||||
|
return this.isUnverifiedVisible && this.isADAS && !this.isRepair;
|
||||||
|
case 'unverifiedNonADASReplace':
|
||||||
|
return this.isUnverifiedVisible && !this.isADAS && !this.isRepair;
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ ref="theForm"
|
||||||
<siteSubHeader
|
<siteSubHeader
|
||||||
id="sub-header"
|
id="sub-header"
|
||||||
cmsWidgetName="SiteSubHeader"
|
cmsWidgetName="SiteSubHeader"
|
||||||
class="mb-0 mt-4" />
|
class="mb-0 mt-4 text-center" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue