fix : 修复直接上报的详情组件渲染

This commit is contained in:
2024-06-02 22:22:06 +08:00
parent 6bb97b4a1d
commit 456f2284e9
7 changed files with 194 additions and 130 deletions

View File

@@ -246,7 +246,7 @@ const handleDetail = (row) => {
router.push({
name: 'Summary/detail',
query: {
id: row.requirementId===null?'-1':row.requirementId,
id: row.requirementId==null?'-1':row.requirementId,
projectId: row.projectId,
state: row.state
}