|
|
|
@ -11,7 +11,7 @@ |
|
|
|
|
<el-table-column label="身份证号" align="center" prop="idNumber" /> |
|
|
|
|
<el-table-column label="所在城市" align="center" prop="city" /> |
|
|
|
|
<el-table-column label="技能" align="center" prop="testSkills" /> |
|
|
|
|
<el-table-column label="状态" align="center" prop="status" width="180"> |
|
|
|
|
<el-table-column key="first" label="状态" align="center" prop="status" width="180"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<span v-if="scope.row.status == 0" style="color: #e6a23c">未审核</span> |
|
|
|
|
<span v-if="scope.row.status == 1" style="color: #0952c8">待审核</span> |
|
|
|
@ -21,11 +21,10 @@ |
|
|
|
|
</el-tooltip> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
|
|
|
|
<el-table-column key="first" label="操作" align="center" class-name="small-padding fixed-width"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<!-- <el-button size="mini" type="text" icon="el-icon-view" @click="handleUpdate('see',scope.row)" v-hasPermi="['system:ApplicationReview:edit']" >查看详情</el-button> --> |
|
|
|
|
<el-button |
|
|
|
|
v-if="scope.row.status == 1 || scope.row.status == 3" |
|
|
|
|
size="mini" |
|
|
|
|
type="text" |
|
|
|
|
icon="el-icon-edit" |
|
|
|
@ -42,11 +41,11 @@ |
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> |
|
|
|
|
|
|
|
|
|
<el-table v-else-if="activeName === 'second'" :data="companyApplyList"> |
|
|
|
|
<el-table v-if="activeName === 'second'" :data="companyApplyList"> |
|
|
|
|
<el-table-column label="公司编号" align="center" prop="applyId" /> |
|
|
|
|
<el-table-column label="姓名" align="center" prop="name" /> |
|
|
|
|
<el-table-column label="公司名称" align="center" prop="companyDesc" /> |
|
|
|
|
<el-table-column label="状态" align="center" prop="status" width="180"> |
|
|
|
|
<el-table-column key="second" label="状态" align="center" prop="status" width="180"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<span v-if="scope.row.status == 0" style="color: #e6a23c">待审核</span> |
|
|
|
|
<span v-if="scope.row.status == 1" style="color: #67c23a">审核通过</span> |
|
|
|
@ -56,7 +55,7 @@ |
|
|
|
|
</el-tooltip> --> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
|
|
|
|
<el-table-column key="second" label="操作" align="center" class-name="small-padding fixed-width"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<el-button |
|
|
|
|
v-if="scope.row.status != 1" |
|
|
|
|