[新增功能](hyx_2024-12-11_humanResource):

list.vue
 - 绑定人资系统
hyx_2024-12-11_humanResource
huangyuxuan 2024-12-17 15:19:55 +08:00
parent 1f221c06eb
commit 02eeacfdd4
1 changed files with 14 additions and 0 deletions

View File

@ -524,6 +524,20 @@ export default {
this.getHrUserInfo()
this.formModel.userId = USER_ID
},
submitForm() {
requestFN(
'/api/humanResource/bindHrUser',
{
USER_ID: this.formModel.userId,
USER_NAME: this.formModel.userName,
CARD_ID: this.formModel.cardId
}
).then((data) => {
this.humanResourceForm = false
}).catch((e) => {
console.log(e)
})
},
getHrUserInfo() {
requestFN(
'/api/humanResource/getUserInfoListByCorpName',