|
@@ -4,7 +4,7 @@
|
|
|
* @Autor: XuTongZhang
|
|
|
* @Date: 2020-07-30 09:53:19
|
|
|
* @LastEditors: XuTongZhang
|
|
|
- * @LastEditTime: 2020-08-02 16:59:20
|
|
|
+ * @LastEditTime: 2020-08-03 16:30:53
|
|
|
-->
|
|
|
<template>
|
|
|
<div class="indexPage">
|
|
@@ -55,7 +55,7 @@
|
|
|
closable
|
|
|
@close="copyPickList.splice(index, 1)"
|
|
|
type="success"
|
|
|
- >{{tableList.find(i => i.id === item).delivererName}}</el-tag>
|
|
|
+ >{{tableList.some(i => i.id === item) ? tableList.find(i => i.id === item).delivererName : ''}}</el-tag>
|
|
|
</div>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="选择群发模板" prop="templateId">
|
|
@@ -117,7 +117,8 @@ export default {
|
|
|
props: 'resumeFrom',
|
|
|
options: [
|
|
|
{ label: '51job', value: 0 },
|
|
|
- { label: '智联', value: 1 }
|
|
|
+ { label: '智联', value: 1 },
|
|
|
+ { label: '58同城', value: 2 }
|
|
|
]
|
|
|
},
|
|
|
{
|
|
@@ -167,11 +168,13 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
label: '性别',
|
|
|
- props: 'delivererSex'
|
|
|
+ props: 'delivererSex',
|
|
|
+ options: ['女', '男']
|
|
|
},
|
|
|
{
|
|
|
label: '简历来源',
|
|
|
- props: ''
|
|
|
+ props: 'resumeFrom',
|
|
|
+ options: ['51job', '智联招聘', '58同城']
|
|
|
},
|
|
|
{
|
|
|
label: '简历投递时间',
|
|
@@ -187,7 +190,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
label: '学历',
|
|
|
- props: ''
|
|
|
+ props: 'delivererEducation'
|
|
|
},
|
|
|
{
|
|
|
label: '联系电话',
|
|
@@ -236,7 +239,8 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
label: '性别',
|
|
|
- props: 'delivererSex'
|
|
|
+ props: 'delivererSex',
|
|
|
+ options: ['女', '男']
|
|
|
},
|
|
|
{
|
|
|
label: '简历来源',
|
|
@@ -376,7 +380,7 @@ export default {
|
|
|
through (row, type = false) {
|
|
|
let ids = type ? row : [row.id]
|
|
|
this.$api
|
|
|
- .post('', {
|
|
|
+ .post('/resumeInfo/changeReadType', {
|
|
|
reqdata: {
|
|
|
ids
|
|
|
}
|
|
@@ -393,7 +397,7 @@ export default {
|
|
|
eliminate (row, type = false) {
|
|
|
let ids = type ? row : [row.id]
|
|
|
this.$api
|
|
|
- .post('', {
|
|
|
+ .post('/resumeInfo/changeReadType', {
|
|
|
reqdata: {
|
|
|
ids
|
|
|
}
|
|
@@ -501,9 +505,9 @@ export default {
|
|
|
type: 'info'
|
|
|
},
|
|
|
{
|
|
|
- title: '标记通过',
|
|
|
- method: 'through',
|
|
|
- type: 'primary'
|
|
|
+ title: '通知面试',
|
|
|
+ method: 'notice',
|
|
|
+ type: 'success'
|
|
|
},
|
|
|
{
|
|
|
title: '标记淘汰',
|
|
@@ -518,16 +522,6 @@ export default {
|
|
|
]
|
|
|
: [
|
|
|
{
|
|
|
- title: '查看简历',
|
|
|
- method: 'details',
|
|
|
- type: 'info'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '通知面试',
|
|
|
- method: 'notice',
|
|
|
- type: 'success'
|
|
|
- },
|
|
|
- {
|
|
|
title: '标记通过',
|
|
|
method: 'through',
|
|
|
type: 'primary'
|
|
@@ -573,9 +567,9 @@ export default {
|
|
|
method: 'search'
|
|
|
},
|
|
|
{
|
|
|
- name: '标记通过',
|
|
|
- type: 'primary',
|
|
|
- method: 'through'
|
|
|
+ name: '通知面试',
|
|
|
+ type: 'success',
|
|
|
+ method: 'notice'
|
|
|
},
|
|
|
{
|
|
|
name: '标题淘汰',
|
|
@@ -609,6 +603,13 @@ export default {
|
|
|
}
|
|
|
]
|
|
|
)
|
|
|
+ this.$set(
|
|
|
+ this.table,
|
|
|
+ 'width',
|
|
|
+ this.isCollapse === 1
|
|
|
+ ? 500 : this.isCollapse === 2
|
|
|
+ ? 400 : 200
|
|
|
+ )
|
|
|
}
|
|
|
}
|
|
|
}
|