From 98521a3a89a7aee9ac85a1de4ba873a491f7dca2 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Wed, 27 Aug 2025 15:10:30 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E4=BC=98=E5=8C=96UPF=E5=AE=9E=E6=97=B6?= =?UTF-8?q?=E6=B5=81=E9=87=8F=E7=BB=9F=E4=B8=8010s=E5=88=B7=E6=96=B0?= =?UTF-8?q?=EF=BC=8C=E5=88=87=E6=8D=A2=E6=98=BE=E7=A4=BA=E4=B8=8B=E4=B8=80?= =?UTF-8?q?=E4=B8=AA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/overview/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/dashboard/overview/index.vue b/src/views/dashboard/overview/index.vue index 9a2f3bfb..9e79124a 100644 --- a/src/views/dashboard/overview/index.vue +++ b/src/views/dashboard/overview/index.vue @@ -219,15 +219,15 @@ function loadData() { interval10s.value = setInterval(() => { if (!interval10s.value) return; if (upfTFActive.value === '0') { - upfTFSend('7'); upfTFActive.value = '7'; } else if (upfTFActive.value === '7') { - upfTFSend('30'); upfTFActive.value = '30'; } else if (upfTFActive.value === '30') { - upfTFSend('0'); upfTFActive.value = '0'; } + upfTFSend('0'); + upfTFSend('7'); + upfTFSend('30'); }, 10_000); clearInterval(interval5s.value);