|
@@ -171,7 +171,11 @@
|
|
<el-table-column label="任务名称" prop="taskName" />
|
|
<el-table-column label="任务名称" prop="taskName" />
|
|
<el-table-column label="任务创建时间" prop="createTime" />
|
|
<el-table-column label="任务创建时间" prop="createTime" />
|
|
<el-table-column label="任务处理时间" prop="approveTime" />
|
|
<el-table-column label="任务处理时间" prop="approveTime" />
|
|
- <el-table-column label="候选人" prop="assignInfo" width="500" />
|
|
|
|
|
|
+ <el-table-column label="候选人" prop="assignInfo" width="500">
|
|
|
|
+ <template #default="scope">
|
|
|
|
+ <span>{{changeAssignInfo(scope.row)}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column label="执行人" prop="approverName" />
|
|
<el-table-column label="执行人" prop="approverName" />
|
|
<el-table-column label="处理状态" prop="status">
|
|
<el-table-column label="处理状态" prop="status">
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
@@ -316,14 +320,14 @@ export default {
|
|
// 查询列表页面
|
|
// 查询列表页面
|
|
getassessmentApplicationList() {
|
|
getassessmentApplicationList() {
|
|
let that = this
|
|
let that = this
|
|
- // let userMes = JSON.parse(window.sessionStorage.getItem('user'))
|
|
|
|
|
|
+ let userMes = JSON.parse(window.sessionStorage.getItem('user'))
|
|
let params = {
|
|
let params = {
|
|
pageNum: that.page.currentPage,
|
|
pageNum: that.page.currentPage,
|
|
pageSize: that.page.pagesize,
|
|
pageSize: that.page.pagesize,
|
|
orderNumber: that.orderNumber,
|
|
orderNumber: that.orderNumber,
|
|
deptName: that.departNameS,
|
|
deptName: that.departNameS,
|
|
- // deptId: userMes.deptId,
|
|
|
|
- deptId: '',
|
|
|
|
|
|
+ deptId: userMes.deptId,
|
|
|
|
+ // deptId: '',
|
|
annual: that.timeIds ? this.timeIds.substring(0, this.timeIds.indexOf('-'))*1 : null,
|
|
annual: that.timeIds ? this.timeIds.substring(0, this.timeIds.indexOf('-'))*1 : null,
|
|
declarationMonth: that.timeIds ? this.timeIds.substring(this.timeIds.indexOf('-')+1, this.timeIds.length)*1 : null
|
|
declarationMonth: that.timeIds ? this.timeIds.substring(this.timeIds.indexOf('-')+1, this.timeIds.length)*1 : null
|
|
}
|
|
}
|
|
@@ -538,6 +542,10 @@ export default {
|
|
}
|
|
}
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ changeAssignInfo(row) {
|
|
|
|
+ let showStr = ''
|
|
|
|
+ return showStr = row.assignInfo.substring(row.assignInfo.indexOf('-')+1, row.assignInfo.length).substring(0, row.assignInfo.substring(row.assignInfo.indexOf('-')+1, row.assignInfo.length).indexOf('-'))
|
|
|
|
+ },
|
|
seeStates(row) {
|
|
seeStates(row) {
|
|
if (!row.instId) {
|
|
if (!row.instId) {
|
|
this.$message({
|
|
this.$message({
|