|
@@ -83,13 +83,13 @@
|
|
|
</el-form-item> -->
|
|
|
<el-table :data="jobChooseList" border style="width: 100%" max-height="300">
|
|
|
<el-table-column type="index" label="序号" width="80" align="center"> </el-table-column>
|
|
|
- <el-table-column prop="job_name" label="职位名称" width="400" align="left"> </el-table-column>
|
|
|
+ <el-table-column prop="job_name" label="职位名称" align="left"> </el-table-column>
|
|
|
<el-table-column align="center" prop="is_practice" label="工作性质" sortable>
|
|
|
<template v-slot="scoped">
|
|
|
{{ `${scoped.row.is_practice}` === `0` ? '全职' : '实习' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column fixed="right" label="操作" width="100">
|
|
|
+ <el-table-column label="操作" width="100">
|
|
|
<template v-slot="scoped">
|
|
|
<el-button type="text" @click="jobsSel(scoped.$index, scoped.row)" size="small">选择</el-button>
|
|
|
</template>
|