Compare commits

..
1 Commits
Author SHA1 Message Date
kevin 558d91b0a4 实时显示发现的url数量 2026-04-11 22:59:10 +08:00
+3 -3
View File
@@ -351,9 +351,9 @@ async function doBatchAdd() {
</div>
<!-- 下一轮链接池 -->
<div class="text-center">
<div class="text-xs text-gray-500 mb-1">下一轮链接池</div>
<div class="text-3xl font-bold" :class="crawlStatus.next_pool_size > 0 ? 'text-purple-400' : 'text-gray-500'">
{{ fmt(crawlStatus.next_pool_size) }}
<div class="text-xs text-gray-500 mb-1">本轮新发现</div>
<div class="text-3xl font-bold" :class="crawlStatus.new_links_count > 0 ? 'text-purple-400' : 'text-gray-500'">
{{ fmt(crawlStatus.new_links_count) }}
</div>
</div>
<!-- 已收录总计 -->