This commit is contained in:
jxxghp
2025-03-01 18:55:16 +08:00
parent 8bd6ccb0de
commit 01f7c6bc2b
16 changed files with 49 additions and 49 deletions

View File

@@ -135,10 +135,10 @@ class WorkflowExecutor:
try:
self.finished_actions += 1
# 更新当前进度
self.context.progress = round(self.finished_actions / self.total_actions) * 100
self.context.__progress__ = round(self.finished_actions / self.total_actions) * 100
# 补充执行历史
self.context.execute_history.append(
self.context.__execute_history__.append(
ActionExecution(
action=action.name,
result=state,