diff --git a/project/xiushan/apps/finance/AppLoanAudit/loanSta.vue b/project/xiushan/apps/finance/AppLoanAudit/loanSta.vue index 89ffb167..3886f02b 100644 --- a/project/xiushan/apps/finance/AppLoanAudit/loanSta.vue +++ b/project/xiushan/apps/finance/AppLoanAudit/loanSta.vue @@ -2,9 +2,11 @@
@@ -166,7 +168,7 @@ export default { }, data() { return { - search: {status: 1}, + search: {}, overviews: [], productTop10: [], tradeTrend: [], @@ -179,9 +181,8 @@ export default { this.getTradeTrend() }, getOverviews() { - let {organizationId} = this.search this.instance.post("/appfinancialloanapply/staticFinancialLoanApplyByOrganization", null, { - params: {organizationId} + params: {...this.search} }).then(res => { if (res?.data) { this.overviews = res.data @@ -189,9 +190,8 @@ export default { }) }, getProductTop10() { - let {organizationId} = this.search this.instance.post("/appfinancialloanapply/queryHotFinancialProduct", null, { - params: {organizationId} + params: {...this.search} }).then(res => { if (res?.data) { this.productTop10 = res.data.map(e => [e.productName, e.applyNumber]) @@ -199,9 +199,8 @@ export default { }) }, getTradeTrend() { - let {organizationId} = this.search this.instance.post("/appfinancialloanapply/queryFinancialLoanApplyByMonth", null, { - params: {organizationId} + params: {...this.search} }).then(res => { if (res?.data) { this.tradeTrend = res.data.map(e => [e.month, e.applyNumber, e.auditNumber])