feat: 导出html页面

This commit is contained in:
电摇小子
2026-08-05 09:46:10 +08:00
committed by Wxw-Gu
parent 7529a67f09
commit c2f9d352db
2 changed files with 5 additions and 2 deletions
+3 -1
View File
@@ -462,7 +462,9 @@ const renderExportScript = (name: string): string => `
}
const updateCount = () => {
const shown = Math.max(0, windowEnd - windowStart)
count.textContent = '已显示 ' + shown + ' / 筛选 ' + filtered.length + ' / 全部 ' + allMessages.length
count.textContent = shown < filtered.length
? '已显示 ' + shown + ' / 筛选结果 ' + filtered.length + ' / 全部 ' + allMessages.length
: '筛选结果 ' + filtered.length + ' / 全部 ' + allMessages.length
}
const setScrollTop = (value) => {
scrollLoadSuppressed = true