Commit 296b11ae by 王昆

gsb

parent a0882405
......@@ -21,6 +21,14 @@ class LaoActionApi extends APIBase {
this.restClient = system.getObject("util.restClient");
this.taxinfoSve = system.getObject("service.operator.taxinfoSve");
this.applyStatusMap = {
10: "已申请",
20: "邀请面试",
30: "面试成功",
40: "面试失败",
50: "待签约",
60: "签约成功",
}
this.companyConfig = {
yd: {
......@@ -434,11 +442,13 @@ class LaoActionApi extends APIBase {
else{
temp_info.data.rows[i].com_name = "";
}
temp_info.data.rows[i].apply_stauts_name = this.applyStatusMap[temp_info.data.rows[i].apply_stauts];
var recruiinfo = await this.recruitSve.findListByUserid(temp_info.data.rows[i].recruit_id);
if (recruiinfo.status == 0){
temp_info.data.rows[i].recruit_name = recruiinfo.data.recruit_name;
temp_info.data.rows[i].work_address = recruiinfo.data.work_address;
var recruiinfo = await this.recruitSve.findById(temp_info.data.rows[i].recruit_id);
if (recruiinfo){
temp_info.data.rows[i].recruit_name = recruiinfo.recruit_name;
temp_info.data.rows[i].work_address = recruiinfo.work_address;
}
else{
temp_info.data.rows[i].recruit_name = "";
......
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