信贷统计完成

This commit is contained in:
aixianling
2022-04-08 18:15:36 +08:00
parent 3d6b1c9b7c
commit d9f873a399

View File

@@ -247,11 +247,11 @@ export default {
}, },
getTradeTrend() { getTradeTrend() {
let {organizationId} = this.search let {organizationId} = this.search
this.instance.post("/appfinancialloanapply/queryHotFinancialProduct", null, { this.instance.post("/appfinancialloanapply/queryFinancialLoanApplyByMonth", null, {
params: {organizationId} params: {organizationId}
}).then(res => { }).then(res => {
if (res?.data) { if (res?.data) {
this.tradeTrend = res.data.map(e => [e.productName, e.applyNumber, Math.max(e.applyNumber - 2, 0)]) this.tradeTrend = res.data.map(e => [e.month, e.applyNumber, e.auditNumber])
} }
}) })
}, },