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:
liyizhouAI 2026-04-17 13:03:23 +08:00
parent 2fda12c8a4
commit 86106001da
1 changed files with 5 additions and 0 deletions

View File

@ -526,6 +526,11 @@ const fetchRunStatus = async () => {
phase.value = 2
stopPolling()
emit('update-status', 'completed')
//
setTimeout(() => {
handleNextStep()
}, 1500)
}
}
} catch (err) {