|
@@ -127,9 +127,18 @@
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column prop="industry" label="行业" width="300">
|
|
<el-table-column prop="industry" label="行业" width="300">
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="postType" label="招聘类型">
|
|
|
|
|
|
|
+ <el-table-column prop="typeDesc" label="招聘类型">
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="tag" label="标签" width="200">
|
|
|
|
|
|
|
+ <el-table-column prop="positionTag" label="标签" width="200">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <div
|
|
|
|
|
+ style="display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3;overflow: hidden;max-height:80px;">
|
|
|
|
|
+ <el-popover placement="top-start" title="" trigger="hover">
|
|
|
|
|
+ <div slot="reference" v-html="scope.row.positionTag"></div>
|
|
|
|
|
+ <div style="width: 400px;" v-html="scope.row.positionTag"></div>
|
|
|
|
|
+ </el-popover>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column prop="welfareTag" label="公司福利" width="200">
|
|
<el-table-column prop="welfareTag" label="公司福利" width="200">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
@@ -658,7 +667,7 @@
|
|
|
} else {
|
|
} else {
|
|
|
this.industry = []
|
|
this.industry = []
|
|
|
}
|
|
}
|
|
|
- this.postType = row.postType
|
|
|
|
|
|
|
+ this.postType = row.typeDesc
|
|
|
this.province = row.province
|
|
this.province = row.province
|
|
|
this.city = row.city
|
|
this.city = row.city
|
|
|
this.district = row.county
|
|
this.district = row.county
|
|
@@ -832,7 +841,7 @@
|
|
|
});
|
|
});
|
|
|
return
|
|
return
|
|
|
}
|
|
}
|
|
|
- if (this.postType == '') {
|
|
|
|
|
|
|
+ if (this.typeDesc == '') {
|
|
|
this.$notify({
|
|
this.$notify({
|
|
|
title: '提示',
|
|
title: '提示',
|
|
|
duration: 1800,
|
|
duration: 1800,
|
|
@@ -875,7 +884,7 @@
|
|
|
'education': this.education,
|
|
'education': this.education,
|
|
|
'experience': this.experience,
|
|
'experience': this.experience,
|
|
|
'industry': this.industry.toString(),
|
|
'industry': this.industry.toString(),
|
|
|
- 'postType': this.postType,
|
|
|
|
|
|
|
+ 'postType': this.typeDesc,
|
|
|
'province': this.province,
|
|
'province': this.province,
|
|
|
'city': this.city,
|
|
'city': this.city,
|
|
|
'county': this.district,
|
|
'county': this.district,
|
|
@@ -931,7 +940,7 @@
|
|
|
this.industry = rows.industry.split(',')
|
|
this.industry = rows.industry.split(',')
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- this.postType = rows.postType
|
|
|
|
|
|
|
+ this.postType = rows.typeDesc
|
|
|
this.province = rows.province
|
|
this.province = rows.province
|
|
|
this.city = rows.city
|
|
this.city = rows.city
|
|
|
this.district = rows.county
|
|
this.district = rows.county
|
|
@@ -1056,7 +1065,7 @@
|
|
|
url: this.$http.adornUrl('sys/dict/selectDictList'),
|
|
url: this.$http.adornUrl('sys/dict/selectDictList'),
|
|
|
method: 'get',
|
|
method: 'get',
|
|
|
params: this.$http.adornParams({
|
|
params: this.$http.adornParams({
|
|
|
- 'type': '工作性质'
|
|
|
|
|
|
|
+ 'type': '招聘类型'
|
|
|
})
|
|
})
|
|
|
}).then(({
|
|
}).then(({
|
|
|
data
|
|
data
|