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() { + + } }