fix : 修复审核意见位置

This commit is contained in:
2024-06-05 00:51:27 +08:00
parent df6f49caeb
commit a7d91a8f32
11 changed files with 252 additions and 69 deletions

View File

@@ -193,6 +193,24 @@ const handleView = (row) => {
source: 'home'
}
})
}else if (row.targetState == '80' && row.targetId) {
router.push({
name: 'Share/detail',
query: {
id: row.targetId,
state: row.state,
source: 'home'
}
})
}else if (row.targetState == '90' && row.targetId) {
router.push({
name: 'Phase/detail',
query: {
id: row.targetId,
state: row.state,
source: 'home'
}
})
}
}
</script>