From b29694352d7433e5666124cc99aa77384d929a26 Mon Sep 17 00:00:00 2001 From: liuye Date: Mon, 11 Apr 2022 11:28:20 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../apps/financing/AppGrabLog/needsStatistics.vue | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/project/xiushan/apps/financing/AppGrabLog/needsStatistics.vue b/project/xiushan/apps/financing/AppGrabLog/needsStatistics.vue index 32bcdf9e..ac95ce1a 100644 --- a/project/xiushan/apps/financing/AppGrabLog/needsStatistics.vue +++ b/project/xiushan/apps/financing/AppGrabLog/needsStatistics.vue @@ -335,14 +335,17 @@ export default { }, created() { this.search.areaId = this.user.info.areaId - this.dict.load('financialOrganizationType', 'financialLoanApplyStatus', 'financingDemandStatus') - }, - mounted() { if (this.user.financeUser && this.user.financeUser.id) { //机构 this.search.organizationId = this.user.financeUser.organizationId this.userOrgId = this.user.financeUser.organizationId } - this.getTableData() + this.dict.load('financialOrganizationType', 'financialLoanApplyStatus', 'financingDemandStatus').then(() => { + this.getTableData() + }) + }, + mounted() { + + } }