From 7622db950a519e16dcb5e8ef9d968a5ffa270abe Mon Sep 17 00:00:00 2001 From: duanliangtao Date: Fri, 8 Dec 2023 15:37:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=BD=91=E6=A0=BC=E5=91=98?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dataBoard/overview/components/MapResourceInfo.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 || {}; + }) }, } }