From 128cf3de4c0afd9fcd6e6257222dd49600191650 Mon Sep 17 00:00:00 2001 From: Alirea <2981883527@qq.com> Date: Fri, 26 Sep 2025 00:39:04 +0800 Subject: [PATCH] =?UTF-8?q?feat(ui):=20=E6=97=A5=E5=BF=97=E6=9F=A5?= =?UTF-8?q?=E7=9C=8B=E7=9A=84=E5=AF=BC=E5=87=BA=E6=97=A5=E5=BF=97=E6=94=B9?= =?UTF-8?q?=E4=B8=BAlog=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/LogViewer.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/LogViewer.vue b/frontend/src/components/LogViewer.vue index f10ba0c..c74e474 100644 --- a/frontend/src/components/LogViewer.vue +++ b/frontend/src/components/LogViewer.vue @@ -60,7 +60,7 @@ - 导出日志(txt格式) + 导出日志(log格式) @@ -285,7 +285,7 @@ const exportLogs = async () => { } else { fileName = `logs_${new Date().toISOString().slice(0, 10)}` } - a.download = `${fileName}.txt` + a.download = `${fileName}.log` document.body.appendChild(a) a.click()