|
@@ -149,9 +149,19 @@
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column prop="resumesEducation" label="学历">
|
|
<el-table-column prop="resumesEducation" label="学历">
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="major" label="所学专业">
|
|
|
|
|
|
|
+ <el-table-column prop="major" label="所学专业" width="180">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <el-popover placement="top-start" title="" trigger="hover">
|
|
|
|
|
+ <div slot="reference"
|
|
|
|
|
+ style="display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3;overflow: hidden;max-height:80px;">
|
|
|
|
|
+ {{scope.row.major}}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div style="width: 300px;">{{scope.row.major}}</div>
|
|
|
|
|
+
|
|
|
|
|
+ </el-popover>
|
|
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="graduationTime" label="毕业时间">
|
|
|
|
|
|
|
+ <el-table-column prop="graduationTime" label="毕业时间" width="100">
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column prop="resumesSex" label="性别">
|
|
<el-table-column prop="resumesSex" label="性别">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
@@ -220,7 +230,7 @@
|
|
|
</el-switch>
|
|
</el-switch>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column> -->
|
|
</el-table-column> -->
|
|
|
- <el-table-column fixed='right' prop="resumesStatus" label="入职状态" width="100">
|
|
|
|
|
|
|
+ <el-table-column fixed='right' prop="resumesStatus" label="入职状态" width="150">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.resumesStatus == 0">离职-正在找工作</span>
|
|
<span v-if="scope.row.resumesStatus == 0">离职-正在找工作</span>
|
|
|
<span v-else-if="scope.row.resumesStatus == 1">在职-月内到岗</span>
|
|
<span v-else-if="scope.row.resumesStatus == 1">在职-月内到岗</span>
|