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

拒绝id问题

parent 6779e696
......@@ -177,6 +177,8 @@ import { getCityNameByCodeApi, getDistNameByCodeApi } from "@/api/common";
import { getEnumText, getEumData, getEnumText2 } from "@/utils/utils.js";
import evn from "@/utils/config.js";
import { useMessage } from "wot-design-uni";
import _ from "lodash";
_.Number;
// 投递id
let id = null;
//工作id
......@@ -324,7 +326,7 @@ onLoad(({ userId, jobId, applicationId, type }) => {
pageType.value = type;
id = applicationId;
jobIdTemp.value = Number(jobId) || null;
jobIdTemp.value = jobId == "null" ? null : jobId;
userIdTemp = userId;
getUserResume({ userId, jobId, applicationId });
});
......
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