|
|
@ -153,8 +153,8 @@ |
|
|
|
<el-form-item><span class="addinputInfo">{{ formobj.executeRegisMoney }}</span></el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="8"> |
|
|
|
<div class="span-sty">其中执行欠款金额</div> |
|
|
|
<el-form-item><el-input class="addinputInfo addinputw" @input="totalMoney" @keyup.native="formobj.executeAmountInArear = getNumber(formobj.executeAmountInArear, 2)" v-model="formobj.executeAmountInArear" clearable placeholder="" /></el-form-item> |
|
|
|
<div class="span-sty"><span class="icon">*</span>其中执行欠款金额</div> |
|
|
|
<el-form-item prop="executeAmountInArear"><el-input class="addinputInfo addinputw" @input="totalMoney" @keyup.native="formobj.executeAmountInArear = getNumber(formobj.executeAmountInArear, 2)" v-model="formobj.executeAmountInArear" clearable placeholder="" /></el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="8"> |
|
|
|
<div class="span-sty">其中执行费用金额</div> |
|
|
@ -266,7 +266,9 @@ export default { |
|
|
|
remarks: '', |
|
|
|
zxclFiles: [] |
|
|
|
}, |
|
|
|
rules: {} |
|
|
|
rules: { |
|
|
|
executeAmountInArear: [{ required: true, message: '其中执行欠款金额不能为空', trigger: 'blur' }] |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
created() { |
|
|
@ -336,7 +338,7 @@ export default { |
|
|
|
// 预执行立案金额 = 其中执行欠款金额 + 其中执行费用金融 |
|
|
|
this.formobj.executeRegisMoney = Math.round((parseFloat(this.formobj.executeAmountInArear !== '' ? this.formobj.executeAmountInArear : 0) + parseFloat(this.formobj.executeExpenseAmount !== '' ? this.formobj.executeExpenseAmount : 0)) * 100) / 100 |
|
|
|
// 预计申请坏账金额 = 当前欠款金额 - 其中执行欠款金额 |
|
|
|
this.formobj.badDebtAmount = Math.round((parseFloat(this.formobj.amountInArear !== '' ? this.formobj.amountInArear : 0) + parseFloat(this.formobj.executeAmountInArear !== '' ? this.formobj.executeAmountInArear : 0)) * 100) / 100 |
|
|
|
this.formobj.badDebtAmount = Math.round((parseFloat(this.formobj.amountInArear !== '' ? this.formobj.amountInArear : 0) - parseFloat(this.formobj.executeAmountInArear !== '' ? this.formobj.executeAmountInArear : 0)) * 100) / 100 |
|
|
|
}, |
|
|
|
executeDeadlineChange(value) { |
|
|
|
const choose = this.executeDeadline_list.filter((item) => item.dictKey === value) |
|
|
@ -416,6 +418,9 @@ export default { |
|
|
|
.addinputInfo { |
|
|
|
margin-left: 140px !important; |
|
|
|
} |
|
|
|
/deep/ .el-form-item__error { |
|
|
|
margin-left: 140px !important; |
|
|
|
} |
|
|
|
.formaddcopy02 .el-row .el-col /deep/ .el-form-item .addinputw { |
|
|
|
margin-left: 140px !important; |
|
|
|
width: calc(100% - 135px); |
|
|
|