|
@@ -105,6 +105,7 @@ const props = defineProps({
|
|
|
id: String,
|
|
|
fairId: String,
|
|
|
userId: String,
|
|
|
+ publishUserId: String,
|
|
|
isRecruitmentOfficer: { type: Boolean, default: true }
|
|
|
})
|
|
|
|
|
@@ -117,9 +118,10 @@ const queryParams = reactive({
|
|
|
pageNo: 1,
|
|
|
pageSize: 10,
|
|
|
jobId: undefined,
|
|
|
- userId: props.userId ?? undefined,
|
|
|
- jobFairId: props.fairId ?? undefined,
|
|
|
- enterpriseId: props.id
|
|
|
+ userId: props.userId ?? undefined, // 求职者管理-详情-职位投递记录
|
|
|
+ jobFairId: props.fairId ?? undefined, // 招聘企业-详情-职位投递记录
|
|
|
+ enterpriseId: props.id, // 招聘企业-详情-职位投递记录
|
|
|
+ publishUserId: props.publishUserId ?? undefined // 招聘官-详情-职位投递记录
|
|
|
})
|
|
|
|
|
|
// 职位投递记录
|