From bcb72118f5d1bb51a325099b960c8ef738b7a8af Mon Sep 17 00:00:00 2001 From: jxxghp Date: Tue, 13 May 2025 08:18:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=A8=E8=83=8C=E6=99=AF=E5=9B=BE=E7=89=87?= =?UTF-8?q?=E5=8A=A0=E8=BD=BD=E5=A4=B1=E8=B4=A5=E6=97=B6=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E9=87=8D=E8=AF=95=E6=9C=BA=E5=88=B6=EF=BC=8C3=E7=A7=92?= =?UTF-8?q?=E5=90=8E=E8=87=AA=E5=8A=A8=E9=87=8D=E8=AF=95=E5=8A=A0=E8=BD=BD?= =?UTF-8?q?=E8=83=8C=E6=99=AF=E5=9B=BE=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 366ce1a3..c17f24ce 100644 --- a/src/App.vue +++ b/src/App.vue @@ -166,7 +166,10 @@ function loadBackgroundImages() { startBackgroundRotation() }) .catch(() => { - console.error('加载背景图片失败') + // 3秒后重试 + setTimeout(() => { + loadBackgroundImages() + }, 3000) }) }