diff --git a/src/views/xgf/allPeopleList/components/list.vue b/src/views/xgf/allPeopleList/components/list.vue index 38d8768..4f4de6e 100644 --- a/src/views/xgf/allPeopleList/components/list.vue +++ b/src/views/xgf/allPeopleList/components/list.vue @@ -31,6 +31,18 @@ + + + + + + + + { this.listLoading = false @@ -270,6 +286,13 @@ export default { }).catch((e) => { this.listLoading = false }) + requestFN( + '/xgf/user/getAllCorpInfo', {} + ).then((data) => { + this.companyList = data.list + }).catch((e) => { + this.loading = false + }) } } } diff --git a/src/views/xgf/peopleList/components/list.vue b/src/views/xgf/peopleList/components/list.vue index 669d7a8..d8a0450 100644 --- a/src/views/xgf/peopleList/components/list.vue +++ b/src/views/xgf/peopleList/components/list.vue @@ -31,6 +31,17 @@ + + + + + + + { this.listLoading = false @@ -269,6 +286,14 @@ export default { }).catch((e) => { this.listLoading = false }) + + requestFN( + '/xgf/user/getAllCorpInfo', {} + ).then((data) => { + this.companyList = data.list + }).catch((e) => { + this.loading = false + }) } } }