修复取消下载响应慢的问题

This commit is contained in:
2025-10-06 07:49:19 +08:00
parent 9a4cd48c3b
commit d915be42dd
5 changed files with 170 additions and 46 deletions
@@ -151,7 +151,10 @@ const getStatusText = (status: string) => {
'failed': '失败',
'cancelled': '已取消',
'partial': '部分完成',
'paused': '已暂停'
'paused': '已暂停',
'pausing': '暂停中',
'resuming': '恢复中',
'cancelling': '取消中'
};
return statusMap[status] || status;
};