修改投注选项
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-01-03 21:34:25 +08:00
parent 8f47153ca3
commit d957f3bd23

View File

@@ -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;
}
};