修改冀北现场反馈问题

This commit is contained in:
GGJ
2025-12-15 09:33:34 +08:00
parent d30b8247cf
commit 9f5b2ecc46
28 changed files with 700 additions and 468 deletions

View File

@@ -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()
}
})
}
}
]
}