This commit is contained in:
2024-05-28 16:11:42 +08:00
parent f43427ad36
commit 1ba38cee19

View File

@@ -111,7 +111,7 @@ const tableStore = new TableStore({
icon: 'el-icon-EditPen',
render: 'basicButton',
click: row => {
handleAudit(row.processInstanceId)
handleAudit(row.processInstanceId,row.historyInstanceId)
}
},
{
@@ -166,11 +166,12 @@ const add = () => {
}
/** 流程实例详情 */
const handleAudit = (instanceId: any) => {
const handleAudit = (instanceId: string,historyIds:string) => {
push({
name: 'BpmProcessInstanceDetail',
query: {
id: instanceId
id: instanceId,
historyIds:historyIds
}
})
}