Update Step1GraphBuild.vue and Step2EnvSetup.vue with API endpoint notes and enhanced styling

- Added API endpoint notes for simulation creation and preparation in Step1GraphBuild.vue and Step2EnvSetup.vue respectively.
- Updated badge styling for processing state to improve visibility.
- Enhanced the narrative box layout and added a custom checkbox for configuring simulation rounds in Step2EnvSetup.vue.
- Introduced a new section for simulation rounds configuration, including user-defined options and estimated time for completion.
This commit is contained in:
666ghj
2025-12-11 23:55:54 +08:00
parent 5c6a5696d8
commit fdbb0e2dc4
4 changed files with 364 additions and 15 deletions

View File

@@ -156,10 +156,15 @@ const toggleMaximize = (target) => {
}
}
const handleNextStep = () => {
const handleNextStep = (params = {}) => {
if (currentStep.value < 5) {
currentStep.value++
addLog(`进入 Step ${currentStep.value}: ${stepNames[currentStep.value - 1]}`)
// 如果是从 Step 2 进入 Step 3记录模拟轮数配置
if (currentStep.value === 3 && params.maxRounds) {
addLog(`自定义模拟轮数: ${params.maxRounds}`)
}
}
}