修改投注大小
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-11-19 16:25:08 +08:00
parent f3d4feb872
commit 20f5e6b7cc

View File

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