From 32692298ffec07ec2e1d7deb33b5d44adc1925cd Mon Sep 17 00:00:00 2001 From: liuwei Date: Thu, 25 Dec 2025 15:59:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=97=A5=E5=BF=97=E8=AF=BB?= =?UTF-8?q?=E5=8F=96=E4=B8=8E=E4=BC=A0=E8=BE=93=E6=95=88=E7=8E=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin/dashboard/templates/wx_logs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/dashboard/templates/wx_logs.html b/admin/dashboard/templates/wx_logs.html index d2bdade..5cc0d05 100644 --- a/admin/dashboard/templates/wx_logs.html +++ b/admin/dashboard/templates/wx_logs.html @@ -94,7 +94,7 @@ .then(response => { if (response.data.success) { this.logContent = response.data.data.content || []; - this.logText = this.logContent.join(''); + this.logText = this.logContent.join('\n'); this.$nextTick(() => { const logDiv = this.$el.querySelector('.log-content'); const pre = this.$refs.logPre;