fix(app): refine account progress and screenshots

This commit is contained in:
2025-12-14 01:21:31 +08:00
parent 8931ad5d7f
commit 2ec88eac3b
20 changed files with 78 additions and 57 deletions

View File

@@ -126,6 +126,9 @@ function showRuntimeProgress(acc) {
if (!statusText || statusText === '未开始') return false
// 仅在“运行中”展示进度;排队/等待等非执行阶段不展示
if (!statusText.includes('运行')) return false
// 浏览完成后(包含等待截图/截图中等阶段)不再展示进度条与内容/附件
if (statusText.includes('截图') || statusText.includes('等待截图')) return false
if (detailText.includes('截图') || detailText.includes('等待截图')) return false