diff --git a/src/views/dataBoard/overview/components/MapResourceInfo.vue b/src/views/dataBoard/overview/components/MapResourceInfo.vue index 9c0e76830..487ef4d2b 100644 --- a/src/views/dataBoard/overview/components/MapResourceInfo.vue +++ b/src/views/dataBoard/overview/components/MapResourceInfo.vue @@ -233,9 +233,15 @@ export default { }) }, getGridOperator() { - this.$http.post('/data/aggregator/org/staffdetailv2?staffId=' + this.id,{staffId: this.id}).then(({data: {data}}) => { + this.$http.post('/actual/base/residentBaseInfo/detail/' + this.id).then(({data: {data}}) => { this.detail = data || {}; }) + this.$http.get('/actual/base/residentEduInfo/detail/' + this.id).then(({data: {data}}) => { + this.education = data || {}; + }) + this.$http.get('/actual/base/residentHobbyInfo/detail/' + this.id).then(({data: {data}}) => { + this.hobby = data || {}; + }) }, } }