试运行历史记录

This commit is contained in:
zhujiyan
2024-06-05 13:44:10 +08:00
parent bcc94b2cf8
commit 6aa15c75d9

View File

@@ -116,7 +116,7 @@ const tableStore = new TableStore({
icon: 'el-icon-EditPen', icon: 'el-icon-EditPen',
render: 'basicButton', render: 'basicButton',
click: row => { click: row => {
handleAudit(row.processInstanceId) handleAudit(row.processInstanceId,row.historyInstanceId)
}, },
disabled: row => { disabled: row => {
return row.testRunState != 2 return row.testRunState != 2
@@ -161,11 +161,12 @@ onMounted(() => {
/** 处理审批按钮 */ /** 处理审批按钮 */
const handleAudit = (instanceId: any) => { const handleAudit = (instanceId: any,historyInstanceId:any) => {
push({ push({
name: 'BpmProcessInstanceDetail', name: 'BpmProcessInstanceDetail',
query: { state: {
id: instanceId id: instanceId,
historyInstanceId
} }
}) })
} }