信贷统计完成

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() {
let {organizationId} = this.search
this.instance.post("/appfinancialloanapply/queryHotFinancialProduct", null, {
this.instance.post("/appfinancialloanapply/queryFinancialLoanApplyByMonth", null, {
params: {organizationId}
}).then(res => {
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])
}
})
},