feat: auto-trigger report generation after simulation completes
Simulation completion detection now automatically triggers report generation after a 1.5s delay, eliminating the need for users to manually click the "generate report" button.
This commit is contained in:
parent
2fda12c8a4
commit
86106001da
|
|
@ -526,6 +526,11 @@ const fetchRunStatus = async () => {
|
|||
phase.value = 2
|
||||
stopPolling()
|
||||
emit('update-status', 'completed')
|
||||
|
||||
// 模拟完成后自动触发报告生成
|
||||
setTimeout(() => {
|
||||
handleNextStep()
|
||||
}, 1500)
|
||||
}
|
||||
}
|
||||
} catch (err) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue