From d957f3bd235a1a4ca38b8debd8356ac6e026ca08 Mon Sep 17 00:00:00 2001 From: YuanHuakk <1751826683@qq.com> Date: Fri, 3 Jan 2025 21:34:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8A=95=E6=B3=A8=E9=80=89?= =?UTF-8?q?=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/index/index.vue | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue index 132bc37..d29d1dd 100644 --- a/src/pages/index/index.vue +++ b/src/pages/index/index.vue @@ -451,20 +451,17 @@ const openDraw = () => { }, 5000); }; -const oddVal = ref(10000); +const oddVal = ref(5000); const changeOdd = () => { switch (oddVal.value) { - case 10: - oddVal.value = 100; - break; - case 100: + case 5000: oddVal.value = 10000; break; case 10000: oddVal.value = 100000; break; case 100000: - oddVal.value = 10; + oddVal.value = 5000; break; } };