Commit 553154e9 authored by 李明环(东信)'s avatar 李明环(东信)

BUG修复

parent 003c7de5
......@@ -256,7 +256,7 @@ const getUserResume = ({ userId, jobId, applicationId }) => {
resumeData.maxSalary = maxSalary && maxSalary / 1000 + "k"; //薪水
resumeData.minSalary = minSalary && minSalary / 1000 + "k";
resumeData.preferredPosition = positionNames;
resumeData.preferredCityName = (await getCityNameByCodeApi(cityCode)).data.cityName;
resumeData.preferredCityName = (await getCityNameByCodeApi(cityCode))?.data?.cityName;
const educationExperienceJson = JSON.parse(educationExperience || "[]"); //教育精力
resumeData.educationExperience = educationExperienceJson;
resumeData.workExperienceYear = workAge; //工作年限
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment