From d9f873a399d1c7ff9de12495451c6cb6e75ae31b Mon Sep 17 00:00:00 2001 From: aixianling Date: Fri, 8 Apr 2022 18:15:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=A1=E8=B4=B7=E7=BB=9F=E8=AE=A1=E5=AE=8C?= =?UTF-8?q?=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/xiushan/apps/finance/AppLoanAudit/loanSta.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/xiushan/apps/finance/AppLoanAudit/loanSta.vue b/project/xiushan/apps/finance/AppLoanAudit/loanSta.vue index b3f6499c..cea3d600 100644 --- a/project/xiushan/apps/finance/AppLoanAudit/loanSta.vue +++ b/project/xiushan/apps/finance/AppLoanAudit/loanSta.vue @@ -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]) } }) },