|
|
|
@ -1426,7 +1426,7 @@ |
|
|
|
<div class="f-flex f-bto16 f-top24"> |
|
|
|
<div class="f-labels">入职时间:</div> |
|
|
|
<span class="f-left8 f-font-color">{{ |
|
|
|
postDto.hiredate ? postDto.hiredate : "--" |
|
|
|
postDto.hireData ? postDto.hireData : "--" |
|
|
|
}}</span> |
|
|
|
</div> |
|
|
|
</el-col> |
|
|
|
@ -1574,7 +1574,7 @@ export default { |
|
|
|
PostText() { |
|
|
|
let text = "--"; |
|
|
|
this.PostDictonArr.forEach((item) => { |
|
|
|
if (item.value == this.postDto.jobPost) { |
|
|
|
if (item.value == this.postDto.postTypes) { |
|
|
|
text = item.label; |
|
|
|
} |
|
|
|
}); |
|
|
|
@ -2029,6 +2029,7 @@ export default { |
|
|
|
} else if (tab._props.label == "更新记录") { |
|
|
|
this.getChangeRecordDetailById(); |
|
|
|
} else if (tab._props.label == "公益岗人员") { |
|
|
|
this.getPostNation(); |
|
|
|
this.getChangepostDtoById(); |
|
|
|
} |
|
|
|
}, |
|
|
|
@ -2062,9 +2063,8 @@ export default { |
|
|
|
}, |
|
|
|
async getChangepostDtoById() { |
|
|
|
try { |
|
|
|
const { data } = await this.$http.post( |
|
|
|
`/actual/base/publicWelfarePost/detail`, |
|
|
|
{ id: this.resiId } |
|
|
|
const { data } = await this.$http.get( |
|
|
|
`/actual/base/resiCategorized/publicWelfarePost/detail/${this.resiId}` |
|
|
|
); |
|
|
|
if (data.data == null) { |
|
|
|
this.postDto = {}; |
|
|
|
@ -2448,7 +2448,7 @@ export default { |
|
|
|
async getPostNation() { |
|
|
|
try { |
|
|
|
let { data } = await this.$http.post("sys/dict/data/dictlist", { |
|
|
|
dictType: "welfare_post", |
|
|
|
dictType: "public_welfare_post_type", |
|
|
|
}); |
|
|
|
this.PostDictonArr = data.data; |
|
|
|
} catch (error) { |
|
|
|
|