|
|
@ -84,7 +84,7 @@ |
|
|
|
<el-col :span="6"> |
|
|
|
<div class="span-sty">贷款保证金</div> |
|
|
|
<el-form-item> |
|
|
|
<el-input class="addinputw" v-model="finance.bondAmount" placeholder="" @input="bondAmountInput" clearable @keyup.native="finance.bondAmount = oninput(finance.bondAmount, 0)"/> |
|
|
|
<el-input class="addinputw" v-model="finance.bondAmount" :disabled="finance.bondTypeKey == '01'" placeholder="" @input="bondAmountInput" clearable @keyup.native="finance.bondAmount = oninput(finance.bondAmount, 0)"/> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="6"> |
|
|
@ -340,9 +340,11 @@ export default { |
|
|
|
finance: { |
|
|
|
accessoriesAmount: '', |
|
|
|
accessoriesAmountCb: false, |
|
|
|
actualDiscount: '', |
|
|
|
bondAmount: '', |
|
|
|
bondAmounts: '', |
|
|
|
bondRatio: '', |
|
|
|
bondTypeKey: '', |
|
|
|
dealWay: '', |
|
|
|
dealWayKey: '', |
|
|
|
depositPremium: '', |
|
|
@ -372,6 +374,7 @@ export default { |
|
|
|
offsetPurchasetax: '', |
|
|
|
offsetTotal: '', |
|
|
|
operationAmount: '', |
|
|
|
otherActualDiscount: '', |
|
|
|
otherAmount: '', |
|
|
|
otherAmountRemark: '', |
|
|
|
otherDiscount: '', |
|
|
@ -484,9 +487,11 @@ export default { |
|
|
|
} |
|
|
|
this.finance.accessoriesAmount = '' |
|
|
|
this.finance.accessoriesAmountCb = false |
|
|
|
this.finance.actualDiscount = '' |
|
|
|
this.finance.bondAmount = '' |
|
|
|
this.finance.bondAmounts = '' |
|
|
|
this.finance.bondRatio = '' |
|
|
|
this.finance.bondTypeKey = '' |
|
|
|
this.finance.dealWay = '' |
|
|
|
this.finance.dealWayKey = '' |
|
|
|
this.finance.depositPremium = '' |
|
|
@ -516,6 +521,7 @@ export default { |
|
|
|
this.finance.offsetPurchasetax = '' |
|
|
|
this.finance.offsetTotal = '' |
|
|
|
this.finance.operationAmount = '' |
|
|
|
this.finance.otherActualDiscount = '' |
|
|
|
this.finance.otherAmount = '' |
|
|
|
this.finance.otherAmountRemark = '' |
|
|
|
this.finance.otherDiscount = '' |
|
|
@ -647,6 +653,8 @@ export default { |
|
|
|
this.finance.serviceChargeTypeKey = choose[0].serviceChargeTypeKey |
|
|
|
// 从金融产品政策中-- 获取服务费 |
|
|
|
this.finance.serviceChargeTypeValue = choose[0].serviceChargeTypeValue |
|
|
|
// 从金融产品政策中 -- 保证金类型(01 固定 贷款保证金不能修改 02 敞口 贷款保证金可修改) |
|
|
|
this.finance.bondTypeKey = choose[0].bondTypeKey |
|
|
|
// 贴息用途赋值 |
|
|
|
this.finance.factoryDiscountUse = '抵利息' |
|
|
|
this.finance.factoryDiscountUseKey = '02' |
|
|
@ -892,6 +900,8 @@ export default { |
|
|
|
this.finance.offsetTotal = resp.data.offsetTotal |
|
|
|
this.finance.realTotal = resp.data.realTotal |
|
|
|
this.finance.vehTotalPrice = resp.data.vehTotalPrice |
|
|
|
this.finance.actualDiscount = resp.data.actualDiscount |
|
|
|
this.finance.otherActualDiscount = resp.data.otherActualDiscount |
|
|
|
this.finance.isShowMore = this.isShowMore |
|
|
|
this.$emit('backData', this.finance) |
|
|
|
this.handleColse() |
|
|
@ -911,9 +921,11 @@ export default { |
|
|
|
this.finance = { |
|
|
|
accessoriesAmount: '', |
|
|
|
accessoriesAmountCb: false, |
|
|
|
actualDiscount: '', |
|
|
|
bondAmount: '', |
|
|
|
bondAmounts: '', |
|
|
|
bondRatio: '', |
|
|
|
bondTypeKey: '', |
|
|
|
dealWay: '', |
|
|
|
dealWayKey: '', |
|
|
|
depositPremium: '', |
|
|
@ -943,6 +955,7 @@ export default { |
|
|
|
offsetPurchasetax: '', |
|
|
|
offsetTotal: '', |
|
|
|
operationAmount: '', |
|
|
|
otherActualDiscount: '', |
|
|
|
otherAmount: '', |
|
|
|
otherAmountRemark: '', |
|
|
|
otherDiscount: '', |
|
|
|