|
|
@@ -15,17 +15,21 @@
|
|
|
<span>{{scope.row.month}}个月</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="cityName" label="驻场地区"></el-table-column>
|
|
|
+ <el-table-column label="驻场地区">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{scope.row.cityName || '-'}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="salaryName" label="薪酬范围"></el-table-column>
|
|
|
<el-table-column prop="statusName" label="岗位状态"></el-table-column>
|
|
|
<el-table-column label="操作">
|
|
|
<template slot-scope="scope">
|
|
|
<div v-if="scope.row.status==='2'">
|
|
|
- <el-button type="primary" class="btn" @click="handleApproveClick(scope.row.id)">通过</el-button>
|
|
|
- <el-button type="primary" class="btn" @click="handleRejectClick(scope.row.id)">不通过</el-button>
|
|
|
+ <el-button type="primary" class="btn" @click.stop="handleApproveClick(scope.row.id)">通过</el-button>
|
|
|
+ <el-button type="primary" class="btn" @click.stop="handleRejectClick(scope.row.id)">不通过</el-button>
|
|
|
</div>
|
|
|
<div v-if="scope.row.status==='3'">
|
|
|
- <el-button type="primary" class="btn" @click="handleRejectClick(scope.row.id)">不通过</el-button>
|
|
|
+ <el-button type="primary" class="btn" @click.stop="handleRejectClick(scope.row.id)">不通过</el-button>
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|