吸收数字员工步骤依赖调度

This commit is contained in:
baiyanyun
2026-06-09 14:18:07 +08:00
parent ddd39396f7
commit fd130f1f60
6 changed files with 416 additions and 12 deletions

View File

@@ -1165,6 +1165,8 @@ function taskStatusTone(status: string): 'running' | 'success' | 'danger' | 'wai
function taskStatusLabel(status: string): string {
const normalized = status.toLowerCase();
if (normalized === 'ready') return '待启动';
if (normalized === 'blocked') return '依赖阻塞';
if (normalized === 'skipped') return '已跳过';
if (normalized === 'cancelled') return '已取消';
if (normalized === 'paused') return '已暂停';