fixed store value reference
This commit is contained in:
parent
b7aaca00e5
commit
a74773c0fe
1 changed files with 2 additions and 2 deletions
|
|
@ -428,8 +428,8 @@ export default {
|
|||
return isRepair && this.isDeductibleVisible;
|
||||
case 'verifiedRepairZeroDeductible':
|
||||
return isRepair && this.isDeductibleVisible && this.deductibleValue <= 0;
|
||||
case 'verifiedRepairZeroDeductibleReplaceDeductibleOverZero': //
|
||||
return isRepair && this.isDeductibleVisible && this.deductibleValue <= 0 && this.mainStore.order.currentReplaceDeductible > 0;
|
||||
case 'verifiedRepairZeroDeductibleReplaceDeductibleOverZero':
|
||||
return isRepair && this.isDeductibleVisible && this.deductibleValue <= 0 && this.mainStore.order.currentDeductible.replace > 0;
|
||||
case 'verifiedRepairDeductibleOverZero':
|
||||
return isRepair && this.isDeductibleVisible && this.deductibleValue > 0;
|
||||
case 'verifiedReplaceDeductible':
|
||||
|
|
|
|||
Loading…
Reference in a new issue