修改冀北现场反馈问题
This commit is contained in:
@@ -56,6 +56,7 @@ import { cancelFormData, getUserReportById } from '@/api/supervision-boot/interf
|
||||
import { ElMessage, ElMessageBox } from 'element-plus'
|
||||
import { useAdminInfo } from '@/stores/adminInfo'
|
||||
import { deleteUserReport } from '@/api/supervision-boot/delete/index'
|
||||
|
||||
//获取登陆用户姓名和部门
|
||||
const adminInfo = useAdminInfo()
|
||||
const dictData = useDictData()
|
||||
@@ -76,7 +77,7 @@ const tableStore = new TableStore({
|
||||
url: '/supervision-boot/userReport/getUserReport',
|
||||
publicHeight: 65,
|
||||
method: 'POST',
|
||||
filename:'未建档用户档案录入管理',
|
||||
filename: '未建档用户档案录入管理',
|
||||
column: [
|
||||
{
|
||||
width: '60',
|
||||
@@ -232,6 +233,26 @@ const tableStore = new TableStore({
|
||||
click: row => {
|
||||
cancelLeave(row)
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'cancel',
|
||||
title: '二级评估',
|
||||
type: 'primary',
|
||||
icon: 'el-icon-Open',
|
||||
render: 'basicButton',
|
||||
disabled: row => {
|
||||
return row.secondAssessmentId == null
|
||||
},
|
||||
click: row => {
|
||||
push({
|
||||
name: 'runManage/assessment',
|
||||
query: {
|
||||
type: '2',
|
||||
secondAssessmentId:row.secondAssessmentId,
|
||||
t: Date.now()
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user