|
|
@ -430,10 +430,18 @@ |
|
|
|
}, |
|
|
|
zyl() { |
|
|
|
// 质率=(贷款金额)(库总价值+应收款+在商品+预付款+户余额) |
|
|
|
|
|
|
|
|
|
|
|
// 质押率= (贷款金额-户余额)/ (库总价值+应收款+在商品+预付款) |
|
|
|
|
|
|
|
const a = Number(this.projectDaily.totalLoan) |
|
|
|
// totalLoan: 0, // 贷款总额', |
|
|
|
// useLimit: 0, // 用信总额', |
|
|
|
// accountsBalance: 0, // 帐户余额', |
|
|
|
// accountsReceivable: 0, // 应收账款', |
|
|
|
// stockAmount: 0, // 库存货值', |
|
|
|
// transitAmount: 0, // 在途货值', |
|
|
|
// advancePayment: 0, // 预付款', |
|
|
|
|
|
|
|
const a = Number(this.projectDaily.useLimit) |
|
|
|
const b = Number(this.projectDaily.accountsReceivable) + Number(this.projectDaily.stockAmount) + Number(this |
|
|
|
.projectDaily.transitAmount) + Number(this.projectDaily |
|
|
|
.advancePayment)+ Number(this.projectDaily.accountsBalance) |
|
|
|