feat: 请求候选记录中追踪代理节点信息并在前端 timeline 展示

This commit is contained in:
fawney19
2026-02-08 01:18:00 +08:00
parent 4a1029961a
commit 254d30d32d
5 changed files with 44 additions and 5 deletions

View File

@@ -198,6 +198,19 @@
</template>
</span>
</div>
<div
v-if="currentAttempt.extra_data?.proxy"
class="info-item"
>
<span class="info-label">代理</span>
<span class="info-value">
<span>{{ currentAttempt.extra_data.proxy.node_name || currentAttempt.extra_data.proxy.url || '未知' }}</span>
<span
v-if="currentAttempt.extra_data.proxy.source === 'system'"
class="text-xs text-muted-foreground ml-1"
>(系统)</span>
</span>
</div>
<div
v-if="mergedCapabilities.length > 0"
class="info-item"