|
@@ -15,25 +15,25 @@
|
|
|
<el-radio-button :label="2">淘汰</el-radio-button>
|
|
|
<el-radio-button :label="3">待定</el-radio-button>
|
|
|
<el-radio-button :label="4">已通知</el-radio-button>
|
|
|
- </el-radio-group><br/>
|
|
|
+ </el-radio-group><br />
|
|
|
<el-dropdown v-if="table.button" @command="dropdownMethods">
|
|
|
- <el-button style="background: #00a0e9;color:#fff">
|
|
|
- 更多操作<i class="el-icon-arrow-down el-icon--right"></i>
|
|
|
- </el-button>
|
|
|
- <el-dropdown-menu slot="dropdown">
|
|
|
- <el-dropdown-item v-for="(item,index) in btn.slice(1)" :key="index" :command="{method: item.method}">{{item.name}}</el-dropdown-item>
|
|
|
- </el-dropdown-menu>
|
|
|
+ <el-button style="background: #00a0e9;color:#fff">
|
|
|
+ 更多操作<i class="el-icon-arrow-down el-icon--right"></i>
|
|
|
+ </el-button>
|
|
|
+ <el-dropdown-menu slot="dropdown">
|
|
|
+ <el-dropdown-item v-for="(item,index) in btn.slice(1)" :key="index" :command="{method: item.method}">{{item.name}}</el-dropdown-item>
|
|
|
+ </el-dropdown-menu>
|
|
|
</el-dropdown>
|
|
|
<div style="height:20px"></div>
|
|
|
- <v-table :key="isCollapse" :table="isCollapse===1?table1:isCollapse===4?throughTable:table" :tableList="tableList" :sortType="true" :queryData="queryData" :form="searchForm" @details="details" @notice="notice" @through="through" @eliminate="eliminate" @del="del" @undetermined="undetermined" @toVedio="toVedio" @selection-change="selection" @update="update" @sendMail="sendMail" id="id"></v-table>
|
|
|
+ <v-table :key="isCollapse" :table="isCollapse===1?table1:isCollapse===4?throughTable:table" :tableList="tableList" :sortType="true" :queryData="queryData" :form="searchForm" @details="details" @notice="notice" @through="through" @eliminate="eliminate" @del="del" @undetermined="undetermined" @toVedio="toVedio" @selection-change="selection" @update="update" @sendMail="sendMail" id="id" :all="true"></v-table>
|
|
|
<v-pager @page="callPage" :total="totalrecords"></v-pager>
|
|
|
<el-dialog :visible.sync="dialogFormVisible" width="600px" :before-close="close" :close-on-click-modal="false">
|
|
|
<el-form :model="form" ref="form" label-width="140px" :rules="rules" label-position="left">
|
|
|
<el-form-item label-width="0">
|
|
|
<div class="title">通知群发列表</div>
|
|
|
<div class="content">
|
|
|
- <el-tag v-for="(item, index) in copyPickList" :key="item" closable @close="copyPickList.splice(index, 1)" :type="errorlist.includes(item)?'danger':'success'">
|
|
|
- {{tableList.some(i => i.id === item) ? tableList.find(i => i.id === item).delivererName + (tableList.find(i => i.id === item).delivererMail || '(无邮箱)') : ''}}
|
|
|
+ <el-tag v-for="(item, index) in copyPickList" :key="item.id" closable @close="copyPickList.splice(index, 1)" :type="errorlist.includes(item.id)?'danger':'success'">
|
|
|
+ {{tableList.some(i => i.id === item.id) ? tableList.find(i => i.id === item.id).delivererName + (tableList.find(i => i.id === item.id).delivererMail || '(无邮箱)') : ''}}
|
|
|
</el-tag>
|
|
|
</div>
|
|
|
</el-form-item>
|
|
@@ -90,7 +90,7 @@
|
|
|
<el-form-item v-for="item in formConfig" :key="item" :label="item.configName">
|
|
|
<!-- {{item.type === 2 ? ['女', '男'][info[item.fieldName]] : item.type === 8 ? ['女', '男'][info[item.fieldName]] : info[item.fieldName]}} -->
|
|
|
<div v-if="item.type === 2">{{['女', '男'][info[item.fieldName]]}}</div>
|
|
|
- <el-link type="primary" v-else-if="item.type === 8" @click="openNewPage($img + info[item.fieldName])" >{{item.configName + '文件'}}</el-link>
|
|
|
+ <el-link type="primary" v-else-if="item.type === 8" @click="openNewPage($img + info[item.fieldName])">{{item.configName + '文件'}}</el-link>
|
|
|
<div v-else-if="item.type === 1" v-html="info[item.fieldName] ? info[item.fieldName].replace(/\n/g,'<br/>') : ''"></div>
|
|
|
<div v-else>{{info[item.fieldName]}}</div>
|
|
|
</el-form-item>
|
|
@@ -262,11 +262,6 @@ export default {
|
|
|
name: '删除',
|
|
|
type: 'danger',
|
|
|
method: 'del'
|
|
|
- },
|
|
|
- {
|
|
|
- name: '邮件通知',
|
|
|
- method: 'sendMail',
|
|
|
- type: 'success'
|
|
|
}
|
|
|
],
|
|
|
table: {
|
|
@@ -298,6 +293,10 @@ export default {
|
|
|
props: 'positionApplied'
|
|
|
},
|
|
|
{
|
|
|
+ label: '意向职位',
|
|
|
+ props: 'desiredPositionName'
|
|
|
+ },
|
|
|
+ {
|
|
|
label: '工作年限',
|
|
|
props: 'delivererWorkExp'
|
|
|
},
|
|
@@ -345,11 +344,6 @@ export default {
|
|
|
title: '修改',
|
|
|
method: 'update',
|
|
|
type: 'warning'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '邮件通知',
|
|
|
- method: 'sendMail',
|
|
|
- type: 'success'
|
|
|
}
|
|
|
]
|
|
|
},
|
|
@@ -382,6 +376,10 @@ export default {
|
|
|
props: 'positionApplied'
|
|
|
},
|
|
|
{
|
|
|
+ label: '意向职位',
|
|
|
+ props: 'desiredPositionName'
|
|
|
+ },
|
|
|
+ {
|
|
|
label: '工作年限',
|
|
|
props: 'delivererWorkExp'
|
|
|
},
|
|
@@ -461,6 +459,10 @@ export default {
|
|
|
props: 'positionApplied'
|
|
|
},
|
|
|
{
|
|
|
+ label: '意向职位',
|
|
|
+ props: 'desiredPositionName'
|
|
|
+ },
|
|
|
+ {
|
|
|
label: '工作年限',
|
|
|
props: 'delivererWorkExp'
|
|
|
},
|
|
@@ -516,7 +518,9 @@ export default {
|
|
|
this.queryEmail()
|
|
|
},
|
|
|
methods: {
|
|
|
- dropdownMethods ({ method }) {
|
|
|
+ dropdownMethods ({
|
|
|
+ method
|
|
|
+ }) {
|
|
|
console.log(method)
|
|
|
this[method + 'All']()
|
|
|
},
|
|
@@ -559,6 +563,7 @@ export default {
|
|
|
item.serialNumber = (this.page - 1) * 10 + index + 1
|
|
|
return item
|
|
|
})
|
|
|
+ this.copyPickList = Array.from(this.pickList)
|
|
|
})
|
|
|
},
|
|
|
queryDownList () {
|
|
@@ -585,7 +590,10 @@ export default {
|
|
|
openNewPage (url) {
|
|
|
window.open(url)
|
|
|
},
|
|
|
- details ({ id, resumeFrom }) {
|
|
|
+ details ({
|
|
|
+ id,
|
|
|
+ resumeFrom
|
|
|
+ }) {
|
|
|
this.$api
|
|
|
.post('/resumeInfo/queryResumeInfoDetail', {
|
|
|
reqdata: {
|
|
@@ -614,7 +622,9 @@ export default {
|
|
|
})
|
|
|
if (!a) return
|
|
|
let resumeInfoStatusList = this.copyPickList.map(item => ({
|
|
|
- id: item,
|
|
|
+ id: item.id,
|
|
|
+ sendInviteStatus: item.sendInviteStatus,
|
|
|
+ sendConfirmStatus: item.sendConfirmStatus,
|
|
|
templateId: this.form.templateId
|
|
|
}))
|
|
|
this.copyPickList.length
|
|
@@ -626,10 +636,10 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
.then((res) => {
|
|
|
+ this.close()
|
|
|
this.$alert('邮件正在发送中,请耐心等待!', '发送结果', {
|
|
|
confirmButtonText: '确定',
|
|
|
- callback: action => {
|
|
|
- }
|
|
|
+ callback: action => {}
|
|
|
})
|
|
|
// this.errorlist = res.object.sendMailFailList.map(item => {
|
|
|
// return item.id
|
|
@@ -643,7 +653,7 @@ export default {
|
|
|
notice (row) {
|
|
|
this.open()
|
|
|
this.state = 1
|
|
|
- this.copyPickList = [row.id]
|
|
|
+ this.copyPickList = [row]
|
|
|
},
|
|
|
noticeAll () {
|
|
|
if (this.pickList.length) {
|
|
@@ -657,9 +667,9 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
through (row, type = false) {
|
|
|
- let ids = type ? row : [row.id]
|
|
|
+ let ids = type ? row : [row]
|
|
|
let resumeInfoStatusList = ids.map(item => ({
|
|
|
- id: item,
|
|
|
+ id: item.id,
|
|
|
isPass: 1
|
|
|
}))
|
|
|
this.$api
|
|
@@ -681,9 +691,9 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
eliminate (row, type = false) {
|
|
|
- let ids = type ? row : [row.id]
|
|
|
+ let ids = type ? row : [row]
|
|
|
let resumeInfoStatusList = ids.map(item => ({
|
|
|
- id: item,
|
|
|
+ id: item.id,
|
|
|
isPass: 2
|
|
|
}))
|
|
|
this.$api
|
|
@@ -705,9 +715,9 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
del (row, type = false) {
|
|
|
- let ids = type ? row : [row.id]
|
|
|
+ let ids = type ? row : [row]
|
|
|
let resumeInfoStatusList = ids.map(item => ({
|
|
|
- id: item,
|
|
|
+ id: item.id,
|
|
|
status: 1
|
|
|
}))
|
|
|
this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
|
|
@@ -746,9 +756,9 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
undetermined (row, type = false) {
|
|
|
- let ids = type ? row : [row.id]
|
|
|
+ let ids = type ? row : [row]
|
|
|
let resumeInfoStatusList = ids.map(item => ({
|
|
|
- id: item,
|
|
|
+ id: item.id,
|
|
|
isPass: 3
|
|
|
}))
|
|
|
this.$api
|
|
@@ -782,7 +792,7 @@ export default {
|
|
|
sendMail (row) {
|
|
|
this.open()
|
|
|
this.state = 2
|
|
|
- this.copyPickList = [row.id]
|
|
|
+ this.copyPickList = [row]
|
|
|
},
|
|
|
sendMailAll () {
|
|
|
if (this.pickList.length) {
|
|
@@ -881,11 +891,6 @@ export default {
|
|
|
title: '修改',
|
|
|
method: 'update',
|
|
|
type: 'warning'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '邮件通知',
|
|
|
- method: 'sendMail',
|
|
|
- type: 'success'
|
|
|
}
|
|
|
]
|
|
|
: this.isCollapse === 2 ? [{
|
|
@@ -972,11 +977,6 @@ export default {
|
|
|
name: '删除',
|
|
|
type: 'danger',
|
|
|
method: 'del'
|
|
|
- },
|
|
|
- {
|
|
|
- name: '邮件通知',
|
|
|
- method: 'sendMail',
|
|
|
- type: 'success'
|
|
|
}
|
|
|
]
|
|
|
: this.isCollapse === 1 ? [{
|