Browse Source

修改资源调度查看

feature
战立标 2 years ago
parent
commit
3f45375ea8
  1. 11
      src/views/dataBoard/overview/components/ResourceInfo.vue

11
src/views/dataBoard/overview/components/ResourceInfo.vue

@ -227,8 +227,17 @@ export default {
})
},
getGridOperator() {
this.$http.post('/data/aggregator/org/staffdetailv2?staffId=' + this.id,{staffId: this.id}).then(({data: {data}}) => {
/* this.$http.post('/data/aggregator/org/staffdetailv2?staffId=' + this.id,{staffId: this.id}).then(({data: {data}}) => {
this.detail = 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