fix : 修复首页查看跳转

This commit is contained in:
2024-05-27 22:38:15 +08:00
parent 26931f4200
commit 30a8ceb424

View File

@@ -166,7 +166,7 @@ const handleView = (row) => {
name: 'Summary/detail', name: 'Summary/detail',
query: { query: {
id: row.targetId, id: row.targetId,
projectId: row.projectId, projectId: row.targetId,
state: row.state state: row.state
} }
}) })
@@ -175,7 +175,7 @@ const handleView = (row) => {
name: 'Initiation/detail', name: 'Initiation/detail',
query: { query: {
id: row.targetId, id: row.targetId,
projectId: row.projectId, projectId: row.targetId,
state: row.state state: row.state
} }
}) })
@@ -184,7 +184,7 @@ const handleView = (row) => {
name: 'Implementation/detail', name: 'Implementation/detail',
query: { query: {
id: row.targetId, id: row.targetId,
projectId: row.projectId, projectId: row.targetId,
state: row.state state: row.state
} }
}) })
@@ -193,7 +193,7 @@ const handleView = (row) => {
name: 'Filing/detail', name: 'Filing/detail',
query: { query: {
id: row.targetId, id: row.targetId,
projectId: row.projectId, projectId: row.targetId,
state: row.state state: row.state
} }
}) })