|
|
@ -429,10 +429,14 @@ |
|
|
|
this.zyl() |
|
|
|
}, |
|
|
|
zyl() { |
|
|
|
const a = Number(this.projectDaily.totalLoan) - Number(this.projectDaily.accountsBalance) |
|
|
|
// 质率=(贷款金额)(库总价值+应收款+在商品+预付款+户余额) |
|
|
|
|
|
|
|
// 质押率= (贷款金额-户余额)/ (库总价值+应收款+在商品+预付款) |
|
|
|
|
|
|
|
const a = Number(this.projectDaily.totalLoan) |
|
|
|
const b = Number(this.projectDaily.accountsReceivable) + Number(this.projectDaily.stockAmount) + Number(this |
|
|
|
.projectDaily.transitAmount) + Number(this.projectDaily |
|
|
|
.advancePayment) |
|
|
|
.advancePayment)+ Number(this.projectDaily.accountsBalance) |
|
|
|
if (b === 0) { |
|
|
|
this.zhiyalv = '0' |
|
|
|
} else { |
|
|
@ -528,7 +532,7 @@ |
|
|
|
this.projectDaily.projectName = this.projectList[i].entryName |
|
|
|
this.projectDaily.useLimit = Number(this.projectList[i].useLimit) |
|
|
|
this.projectDaily.accountsBalance = this.projectList[i].balance |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|