|
|
@ -241,7 +241,7 @@ |
|
|
|
</el-form-item> |
|
|
|
</div> |
|
|
|
<div v-if="finance.dealWayKey == '02' && finance.isPack == '1'"> |
|
|
|
<div class="span-sty">抵顶首年保险费</div> |
|
|
|
<div class="span-sty">首年保险费抵顶</div> |
|
|
|
<el-form-item> |
|
|
|
<el-input class="addinputw" v-model="finance.offsetPremium" :disabled="!finance.premiumCb || this.finance.premium == ''" placeholder="" clearable @keyup.native="finance.offsetPremium = oninput(finance.offsetPremium, 0)"/> |
|
|
|
</el-form-item> |
|
|
@ -255,7 +255,7 @@ |
|
|
|
</el-form-item> |
|
|
|
</div> |
|
|
|
<div v-if="finance.dealWayKey == '02' && finance.isPack == '1'"> |
|
|
|
<div class="span-sty">抵顶购置税</div> |
|
|
|
<div class="span-sty">购置税抵顶</div> |
|
|
|
<el-form-item> |
|
|
|
<el-input class="addinputw" v-model="finance.offsetPurchasetax" :disabled="!finance.purchaseTaxCb || this.finance.purchaseTax == ''" placeholder="" clearable @keyup.native="finance.offsetPurchasetax = oninput(finance.offsetPurchasetax, 0)"/> |
|
|
|
</el-form-item> |
|
|
@ -870,11 +870,11 @@ export default { |
|
|
|
} |
|
|
|
if (this.finance.dealWayKey === '02' && this.finance.isPack === '1') { |
|
|
|
if (parseInt(this.arguments(this.finance.premium)) < parseInt(this.arguments(this.finance.offsetPremium))) { |
|
|
|
this.$message({ showClose: true, type: 'error', message: '抵顶首年保险费数额不能大于融资项目中的保险数额' }) |
|
|
|
this.$message({ showClose: true, type: 'error', message: '首年保险费抵顶数额不能大于融资项目中的保险数额' }) |
|
|
|
return |
|
|
|
} |
|
|
|
if (parseInt(this.arguments(this.finance.purchaseTax)) < parseInt(this.arguments(this.finance.offsetPurchasetax))) { |
|
|
|
this.$message({ showClose: true, type: 'error', message: '抵顶购置税数额不能大于融资项目中的购置税数额' }) |
|
|
|
this.$message({ showClose: true, type: 'error', message: '购置税抵顶数额不能大于融资项目中的购置税数额' }) |
|
|
|
return |
|
|
|
} |
|
|
|
} |
|
|
|