Update simulation components and descriptions for clarity and functionality

- Added a new method in simulation.js for retrieving detailed run status.
- Revised descriptions in Step1GraphBuild.vue and Step2EnvSetup.vue for improved clarity on simulation processes.
- Updated titles and labels in Step2EnvSetup.vue to better reflect the initialization and setup stages.
- Enhanced styling and layout in Step2EnvSetup.vue for a more cohesive user experience.
- Adjusted descriptions in Home.vue to accurately represent the simulation workflow.
This commit is contained in:
666ghj
2025-12-11 17:02:17 +08:00
parent fc95cc6595
commit 01d94f3d21
5 changed files with 88 additions and 55 deletions

View File

@@ -98,3 +98,4 @@ export const getRunStatus = (simulationId) => {
export const getRunStatusDetail = (simulationId) => {
return service.get(`/api/simulation/${simulationId}/run-status/detail`)
}