Browse Source

修改网格员接口

feature
duanliangtao 2 years ago
parent
commit
7622db950a
  1. 8
      src/views/dataBoard/overview/components/MapResourceInfo.vue

8
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 || {};
})
},
}
}

Loading…
Cancel
Save