From 20f5e6b7cc61c3fe9650af298437cacb4f632dc6 Mon Sep 17 00:00:00 2001 From: YuanHuakk <1751826683@qq.com> Date: Tue, 19 Nov 2024 16:25:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8A=95=E6=B3=A8=E5=A4=A7?= =?UTF-8?q?=E5=B0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/index/index.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue index 70f9efa..9edbb8b 100644 --- a/src/pages/index/index.vue +++ b/src/pages/index/index.vue @@ -451,17 +451,17 @@ const openDraw = () => { }, 5000); }; -const oddVal = ref(100); +const oddVal = ref(1000); const changeOdd = () => { switch (oddVal.value) { - case 100: - oddVal.value = 1000; + case 1000: + oddVal.value = 10000; break; // case 10: // oddVal.value = 100 // break - case 1000: - oddVal.value = 100; + case 10000: + oddVal.value = 1000; break; } };