|
|
|
@ -34,7 +34,17 @@ |
|
|
|
|
{{ scope.row.graduateTime && scope.row.graduateTime.slice(0, 10) }} |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="简历完整度" align="center" prop="integrity" /> |
|
|
|
|
<el-table-column label="显示状态" align="center" prop="status"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<el-tag type="success" v-if="scope.row.status == 2">已上线</el-tag> |
|
|
|
|
<el-tag type="danger" v-if="scope.row.status == 4">已隐藏</el-tag> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="简历完整度" align="center" prop="integrity"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
{{ scope.row.integrity }}% |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="350px"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-edit" @click="cloudUserDetail(scope.row)" |
|
|
|
|