|
|
@@ -112,6 +112,23 @@
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
+ <el-col :span="24">
|
|
|
+ <div class="inlineb">
|
|
|
+ <span class>是否有文件:</span>
|
|
|
+ <div class="inlineb">
|
|
|
+ <el-select v-model="file" >
|
|
|
+ <el-option
|
|
|
+ v-for="item of files"
|
|
|
+ :key="item.id"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.id"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row>
|
|
|
<el-col :span="24">职位方向:<span>{{directions}}</span><span style="display: none">{{match_directions}}</span></el-col>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
@@ -205,6 +222,15 @@
|
|
|
label: '已结束'
|
|
|
}],
|
|
|
statusValue: 0,
|
|
|
+
|
|
|
+ files: [{
|
|
|
+ id: '1',
|
|
|
+ label: '是'
|
|
|
+ }, {
|
|
|
+ id: '0',
|
|
|
+ label: '否'
|
|
|
+ }],
|
|
|
+ file: '0',
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
@@ -243,8 +269,9 @@
|
|
|
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;
|
|
|
+ this.statusValue = res.data.job.status?res.data.job.status:0;
|
|
|
+ this.city = res.data.job.city?res.data.job.city:0;
|
|
|
+ this.file = res.data.job.show_file?res.data.job.show_file:'0';
|
|
|
this.job_type = vars[1].split("=")[1];
|
|
|
this.job_description = res.data.job.description;
|
|
|
this.match_directions = res.data.job.match_directions;
|
|
|
@@ -310,6 +337,7 @@
|
|
|
'salary_from' : this.salary_from,
|
|
|
'salary_to' : this.salary_to,
|
|
|
'city' : this.city,
|
|
|
+ 'show_file' : this.file,
|
|
|
'month' : this.month,
|
|
|
'work_year' : this.work_year,
|
|
|
'job_direction' : this.match_directions,
|