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;