From 9c0019087b514d17eae34d170a57251c7b3f6005 Mon Sep 17 00:00:00 2001 From: aixianling Date: Tue, 1 Mar 2022 14:41:49 +0800 Subject: [PATCH] BUG 27900 --- .../xiushan/apps/financing/AppFinancingNeeds/needsList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/xiushan/apps/financing/AppFinancingNeeds/needsList.vue b/project/xiushan/apps/financing/AppFinancingNeeds/needsList.vue index 0817db99..599f6f69 100644 --- a/project/xiushan/apps/financing/AppFinancingNeeds/needsList.vue +++ b/project/xiushan/apps/financing/AppFinancingNeeds/needsList.vue @@ -37,7 +37,7 @@ export default { }, data() { return { - search: {name: ""}, + search: {enterpriseName: ""}, page: {current: 1, size: 10, total: 0}, tableData: [], colConfigs: [ @@ -55,7 +55,7 @@ export default { methods: { getTableData() { this.instance.post("/appfinancingdemand/list", null, { - params: {...this.page, ...this.search} + params: {...this.page, ...this.search, status: 0} }).then(res => { if (res?.data) { this.tableData = res.data?.records