|
@@ -4,7 +4,7 @@
|
|
|
* @Autor: XuTongZhang
|
|
|
* @Date: 2020-07-28 15:25:06
|
|
|
* @LastEditors : yuanrunwei
|
|
|
- * @LastEditTime : 2021-02-05 17:41:38
|
|
|
+ * @LastEditTime : 2021-02-07 12:21:01
|
|
|
-->
|
|
|
<template>
|
|
|
<div class="candidateList">
|
|
@@ -32,7 +32,7 @@
|
|
|
<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.id)?'danger':'success'">
|
|
|
+ <el-tag v-for="(item, index) in copyPickList" :key="index" 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>
|
|
@@ -618,6 +618,11 @@ export default {
|
|
|
type: 'success'
|
|
|
},
|
|
|
{
|
|
|
+ name: '删除',
|
|
|
+ type: 'danger',
|
|
|
+ method: 'del'
|
|
|
+ },
|
|
|
+ {
|
|
|
title: '修改',
|
|
|
method: 'update',
|
|
|
type: 'warning'
|
|
@@ -774,6 +779,11 @@ export default {
|
|
|
type: 'danger'
|
|
|
},
|
|
|
{
|
|
|
+ name: '删除',
|
|
|
+ type: 'danger',
|
|
|
+ method: 'del'
|
|
|
+ },
|
|
|
+ {
|
|
|
title: '修改',
|
|
|
method: 'update',
|
|
|
type: 'warning'
|
|
@@ -977,7 +987,7 @@ export default {
|
|
|
id: item.id,
|
|
|
status: 1
|
|
|
}))
|
|
|
- this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
|
|
|
+ this.$confirm('确认删除该面试?', '提示', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|
|
@@ -1179,6 +1189,11 @@ export default {
|
|
|
type: 'warning'
|
|
|
},
|
|
|
{
|
|
|
+ title: '删除',
|
|
|
+ type: 'danger',
|
|
|
+ method: 'del'
|
|
|
+ },
|
|
|
+ {
|
|
|
title: '邮件通知',
|
|
|
method: 'sendMail',
|
|
|
type: 'success'
|
|
@@ -1193,6 +1208,11 @@ export default {
|
|
|
type: 'info'
|
|
|
},
|
|
|
{
|
|
|
+ title: '删除',
|
|
|
+ type: 'danger',
|
|
|
+ method: 'del'
|
|
|
+ },
|
|
|
+ {
|
|
|
title: '邮件通知',
|
|
|
method: 'sendScoreMail',
|
|
|
type: 'success'
|