|
@@ -183,6 +183,16 @@
|
|
|
</el-switch>
|
|
</el-switch>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
+ <el-table-column prop="statusDesc" label="状态" fixed="right">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <span style="color: #999;" v-if="scope.row.status==1">待审核</span>
|
|
|
|
|
+ <span style="color: #999;" v-else-if="scope.row.status==2">审核通过</span>
|
|
|
|
|
+ <span style="color: #ff4949;" v-else-if="scope.row.status==3">审核拒绝</span>
|
|
|
|
|
+ <span style="color: #999;" v-else-if="scope.row.status==4">已取消</span>
|
|
|
|
|
+ <span style="color: #999;" v-else-if="scope.row.status==5">已关闭</span>
|
|
|
|
|
+ <span style="color: #999;" v-else-if="scope.row.status==6">暂存中</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column fixed="right" label="操作" width="180">
|
|
<el-table-column fixed="right" label="操作" width="180">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<el-button size="mini" type="primary" :disabled="!isAuth('recruitListS:update')"
|
|
<el-button size="mini" type="primary" :disabled="!isAuth('recruitListS:update')"
|
|
@@ -558,6 +568,12 @@
|
|
|
}, {
|
|
}, {
|
|
|
value: 4,
|
|
value: 4,
|
|
|
label: '已取消'
|
|
label: '已取消'
|
|
|
|
|
+ }, {
|
|
|
|
|
+ value: 5,
|
|
|
|
|
+ label: '已关闭'
|
|
|
|
|
+ }, {
|
|
|
|
|
+ value: 6,
|
|
|
|
|
+ label: '暂存中'
|
|
|
},
|
|
},
|
|
|
],
|
|
],
|
|
|
latitude: '', //纬度
|
|
latitude: '', //纬度
|