|
@@ -23,7 +23,9 @@
|
|
|
<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="success">{{tableList.some(i => i.id === item) ? tableList.find(i => i.id === item).delivererName : ''}}</el-tag>
|
|
|
+ <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>
|
|
|
</div>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="选择群发模板" prop="templateId">
|
|
@@ -74,6 +76,23 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
</el-dialog>
|
|
|
+ <el-dialog :visible.sync="visible" width="600px" :before-close="closeVisible" :close-on-click-modal="false">
|
|
|
+ <el-form label-width="140px" label-position="right">
|
|
|
+ <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" :link=" $img + info[item.fieldName]">{{item.configName + '文件'}}</el-link>
|
|
|
+ <div v-else>{{info[item.fieldName]}}</div>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="简历">
|
|
|
+ <!-- {{['女', '男'][info.delivererSex]}} -->
|
|
|
+ <el-link type="primary" :link=" $img + info.filePath">简历文件</el-link>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button @click="closeVisible">取 消</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -94,14 +113,18 @@ export default {
|
|
|
tableList: [],
|
|
|
dialogFormVisible: false,
|
|
|
dialogVisible: false,
|
|
|
+ visible: false,
|
|
|
page: 1,
|
|
|
isCollapse: 0,
|
|
|
totalrecords: 0,
|
|
|
pickList: [],
|
|
|
copyPickList: [],
|
|
|
downList: [],
|
|
|
+ errorlist: [],
|
|
|
+ formConfig: [],
|
|
|
form: {},
|
|
|
uform: {},
|
|
|
+ info: {},
|
|
|
email: '',
|
|
|
searchForm: {},
|
|
|
rules: {
|
|
@@ -272,7 +295,7 @@ export default {
|
|
|
],
|
|
|
width: 500,
|
|
|
handle: [{
|
|
|
- title: '查看简历',
|
|
|
+ title: '查看',
|
|
|
method: 'details',
|
|
|
type: 'info'
|
|
|
},
|
|
@@ -355,14 +378,14 @@ export default {
|
|
|
],
|
|
|
width: 360,
|
|
|
handle: [{
|
|
|
- title: '查看简历',
|
|
|
+ title: '查看',
|
|
|
method: 'details',
|
|
|
type: 'info'
|
|
|
},
|
|
|
{
|
|
|
title: '查看视频',
|
|
|
method: 'toVedio',
|
|
|
- type: 'warning',
|
|
|
+ type: 'info',
|
|
|
props: 'interviewStatus',
|
|
|
key: 1
|
|
|
},
|
|
@@ -432,16 +455,6 @@ export default {
|
|
|
.then((res) => {
|
|
|
this.downList = res.list
|
|
|
})
|
|
|
- // this.$api
|
|
|
- // .post('/position/queryPositionList', {
|
|
|
- // reqdata: {}
|
|
|
- // })
|
|
|
- // .then((res) => {
|
|
|
- // this.list[3].options = res.list.map((item) => ({
|
|
|
- // value: item.id,
|
|
|
- // label: item.positionName
|
|
|
- // }))
|
|
|
- // })
|
|
|
},
|
|
|
queryEmail () {
|
|
|
this.$api
|
|
@@ -454,9 +467,7 @@ export default {
|
|
|
search (form) {
|
|
|
this.queryData(form)
|
|
|
},
|
|
|
- details ({
|
|
|
- id
|
|
|
- }) {
|
|
|
+ details ({ id, resumeFrom }) {
|
|
|
this.$api
|
|
|
.post('/resumeInfo/queryResumeInfoDetail', {
|
|
|
reqdata: {
|
|
@@ -464,10 +475,18 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
.then((res) => {
|
|
|
- res.object.filePath ? window.open(this.$img + res.object.filePath) : this.$message({
|
|
|
- type: 'info',
|
|
|
- message: '无此人简历'
|
|
|
- })
|
|
|
+ resumeFrom === 3
|
|
|
+ ? (() => {
|
|
|
+ this.openVisible()
|
|
|
+ this.formConfig = JSON.parse(res.object.formConfig)
|
|
|
+ this.info = res.object
|
|
|
+ })()
|
|
|
+ : res.object.filePath
|
|
|
+ ? window.open(this.$img + res.object.filePath)
|
|
|
+ : this.$message({
|
|
|
+ type: 'info',
|
|
|
+ message: '无此人简历!'
|
|
|
+ })
|
|
|
})
|
|
|
},
|
|
|
launch () {
|
|
@@ -488,12 +507,15 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
.then((res) => {
|
|
|
- this.$message({
|
|
|
- message: '通知成功',
|
|
|
- type: 'success'
|
|
|
- })
|
|
|
- this.close()
|
|
|
this.queryData(this.searchForm)
|
|
|
+ this.$alert(`${res.object.successTotal}条发送成功,${res.object.failTotal}条发送失败!`, '发送结果', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ callback: action => {
|
|
|
+ }
|
|
|
+ })
|
|
|
+ this.errorlist = res.object.sendMailFailList.map(item => {
|
|
|
+ return item.id
|
|
|
+ })
|
|
|
})
|
|
|
: this.$message({
|
|
|
type: 'info',
|
|
@@ -670,6 +692,13 @@ export default {
|
|
|
this.form = {}
|
|
|
this.copyPickList = Array.from(this.pickList)
|
|
|
},
|
|
|
+ openVisible () {
|
|
|
+ this.visible = true
|
|
|
+ },
|
|
|
+ closeVisible () {
|
|
|
+ this.visible = false
|
|
|
+ this.info = {}
|
|
|
+ },
|
|
|
callPage (val) {
|
|
|
this.page = val
|
|
|
this.queryData(this.searchForm)
|
|
@@ -685,7 +714,7 @@ export default {
|
|
|
this.table,
|
|
|
'handle',
|
|
|
this.isCollapse === 0 ? [{
|
|
|
- title: '查看简历',
|
|
|
+ title: '查看',
|
|
|
method: 'details',
|
|
|
type: 'info'
|
|
|
},
|
|
@@ -716,7 +745,7 @@ export default {
|
|
|
}
|
|
|
]
|
|
|
: this.isCollapse === 1 ? [{
|
|
|
- title: '查看简历',
|
|
|
+ title: '查看',
|
|
|
method: 'details',
|
|
|
type: 'info'
|
|
|
},
|
|
@@ -737,7 +766,7 @@ export default {
|
|
|
}
|
|
|
]
|
|
|
: this.isCollapse === 2 ? [{
|
|
|
- title: '查看简历',
|
|
|
+ title: '查看',
|
|
|
method: 'details',
|
|
|
type: 'info'
|
|
|
},
|
|
@@ -757,7 +786,7 @@ export default {
|
|
|
type: 'warning'
|
|
|
}
|
|
|
] : [{
|
|
|
- title: '查看简历',
|
|
|
+ title: '查看',
|
|
|
method: 'details',
|
|
|
type: 'info'
|
|
|
},
|