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