|
|
@@ -97,7 +97,7 @@
|
|
|
<el-col :span="19" :offset="5">职位方向:<span>{{directions}}</span><span style="display: none">{{match_directions}}</span></el-col>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
- <el-col :span="19" :offset="5">技能要求:<span>{{skill}}</span></el-col>
|
|
|
+ <el-col :span="19" :offset="5">技能要求:<span>{{skill}}</span><span style="display: none">{{match_skills}}</span></el-col>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-col :span="15" :offset="5">工作内容:
|
|
|
@@ -140,6 +140,7 @@
|
|
|
salary_to:'',
|
|
|
month:'',
|
|
|
directions:'',
|
|
|
+ match_skills:'',
|
|
|
skill:'',
|
|
|
job_description:'',
|
|
|
match_directions:'',
|
|
|
@@ -219,6 +220,7 @@
|
|
|
this.salary_to = res.data.job.match_salary_max;
|
|
|
this.month = res.data.job.month;
|
|
|
this.directions = res.data.job.directions;
|
|
|
+ this.match_skills = res.data.job.match_skills;
|
|
|
this.skill = res.data.job.skill;
|
|
|
this.statusValue = res.data.job.status;
|
|
|
this.city = res.data.job.city;
|
|
|
@@ -278,7 +280,7 @@
|
|
|
'city' : this.city,
|
|
|
'month' : this.month,
|
|
|
'job_direction' : this.match_directions,
|
|
|
- 'job_skills' : this.skill,
|
|
|
+ 'job_skills' : this.match_skills,
|
|
|
'job_description' :this.job_description
|
|
|
}
|
|
|
const res = await this.$post("/api/admin/present_job/present_edit",body);
|