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() {
|
||||
return this.mainStore.order.damage.isRepair;
|
||||
}
|
||||
// unverifiedADASReplace() {
|
||||
// return this.isUnverifiedVisible && this.isADAS && !this.isRepair;
|
||||
// },
|
||||
// unverifiedNonADASReplace() {
|
||||
// return this.isUnverifiedVisible && !this.isADAS && !this.isRepair;
|
||||
// }
|
||||
},
|
||||
watch: {
|
||||
selectedProvider() {
|
||||
|
|
@ -470,6 +476,10 @@ export default {
|
|||
return (
|
||||
this.isDeductibleVisible && this.deductibleValue === 0
|
||||
);
|
||||
case 'unverifiedADASReplace':
|
||||
return this.isUnverifiedVisible && this.isADAS && !this.isRepair;
|
||||
case 'unverifiedNonADASReplace':
|
||||
return this.isUnverifiedVisible && !this.isADAS && !this.isRepair;
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ ref="theForm"
|
|||
<siteSubHeader
|
||||
id="sub-header"
|
||||
cmsWidgetName="SiteSubHeader"
|
||||
class="mb-0 mt-4" />
|
||||
class="mb-0 mt-4 text-center" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row justify-content-center">
|
||||
|
|
|
|||
Loading…
Reference in a new issue