fix: 移除新增的tabKey,调整对应的路由设计,方便关闭路由和修改标题

feat: 新样式的退回操作对话框
This commit is contained in:
gaoyunqi
2024-02-28 16:16:17 +08:00
parent cb075df41c
commit 8a8d18a33a
10 changed files with 362 additions and 250 deletions

View File

@ -136,12 +136,9 @@
const onRowDblClick = (record, index) => {
const { processId, taskId, schemaId } = record;
router.push({
path: "/flow/approveFlow",
path: `/flow/${schemaId}/${processId}/approveFlow`,
query: {
schemaId,
taskId,
processId,
tabKey: "approve_" + taskId
taskId
}
});
};