|
|
@ -495,6 +495,10 @@ export default { |
|
|
|
this.finance.nominalPrice = choose[0].nominalPrice |
|
|
|
// 从金融产品政策中-- 获取代收意外险 |
|
|
|
this.finance.proxyAccidentPremium = choose[0].vehAccidentAmount |
|
|
|
// 从金融产品政策中-- 获取服务费类型 |
|
|
|
this.finance.serviceChargeTypeKey = choose[0].serviceChargeTypeKey |
|
|
|
// 从金融产品政策中-- 获取服务费 |
|
|
|
this.finance.serviceChargeTypeValue = choose[0].serviceChargeTypeValue |
|
|
|
// 贴息用途赋值 |
|
|
|
this.finance.factoryDiscountUse = '抵利息' |
|
|
|
this.finance.factoryDiscountUseKey = '02' |
|
|
@ -583,11 +587,11 @@ export default { |
|
|
|
// 融资项目总额 * 融资项目总额比例(金融产品政策中服务费) |
|
|
|
this.finance.serviceAmount = Math.round(parseInt(this.arguments(this.finance.loanTotal)) * parseFloat(this.arguments(this.finance.serviceChargeTypeValue))) |
|
|
|
} else if (this.finance.serviceChargeTypeKey === '02') { |
|
|
|
// 等于金融产品政策中服务费 |
|
|
|
this.finance.serviceAmount = this.finance.serviceChargeTypeValue |
|
|
|
} else if (this.finance.serviceChargeTypeKey === '03') { |
|
|
|
// 贷款金额 * 贷款金额比例(金融产品政策中服务费) |
|
|
|
this.finance.serviceAmount = Math.round(parseInt(this.arguments(this.finance.loanAmount)) * parseFloat(this.arguments(this.finance.serviceChargeTypeValue))) |
|
|
|
} else if (this.finance.serviceChargeTypeKey === '03') { |
|
|
|
// 等于金融产品政策中服务费 |
|
|
|
this.finance.serviceAmount = this.finance.serviceChargeTypeValue |
|
|
|
} |
|
|
|
} |
|
|
|
if (this.finance.premiumCb && this.finance.dealWayKey === '02') { |
|
|
|