|
@@ -1228,23 +1228,23 @@ import { apiBaseUrl } from '@/common/config.js';
|
|
})),
|
|
})),
|
|
|
|
|
|
// 工作经历映射
|
|
// 工作经历映射
|
|
- work_experience: this.workList.map(work => ({
|
|
|
|
|
|
+ work_experiences: this.workList.map(work => ({
|
|
start_date: work.startTime,
|
|
start_date: work.startTime,
|
|
end_date: work.endTime,
|
|
end_date: work.endTime,
|
|
- company_name: work.companyName,
|
|
|
|
- department: work.department,
|
|
|
|
- employee_count: work.employeeCount,
|
|
|
|
- position: work.position,
|
|
|
|
- monthly_salary: work.monthlySalary,
|
|
|
|
- supervisor: work.supervisor,
|
|
|
|
- supervisor_phone: work.supervisorPhone
|
|
|
|
|
|
+ company_name: work.companyName,//单位名称
|
|
|
|
+ department: work.department,//任职部门
|
|
|
|
+ company_size: work.employeeCount,//员工人数
|
|
|
|
+ position: work.position,//担任职务
|
|
|
|
+ monthly_salary: work.monthlySalary,//月薪
|
|
|
|
+ supervisor_name: work.supervisor,//直属上级
|
|
|
|
+ supervisor_phone: work.supervisorPhone//直属上级电话
|
|
})),
|
|
})),
|
|
|
|
|
|
// 培训经历可以从技能和培训文本框中提取
|
|
// 培训经历可以从技能和培训文本框中提取
|
|
- trainings: this.formData.training ? [{
|
|
|
|
|
|
+ /* trainings: this.formData.training ? [{
|
|
training_name: "培训经历",
|
|
training_name: "培训经历",
|
|
description: this.formData.training
|
|
description: this.formData.training
|
|
- }] : []
|
|
|
|
|
|
+ }] : [] */
|
|
};
|
|
};
|
|
|
|
|
|
console.log('提交的表单数据:', submitData);
|
|
console.log('提交的表单数据:', submitData);
|