fix:修复语音,射箭数字,第一轮提前报靶问题

This commit is contained in:
2026-05-22 17:57:20 +08:00
parent ef2a71f793
commit fe8b38bc6f
4 changed files with 91 additions and 13 deletions

View File

@@ -9,7 +9,7 @@ const props = defineProps({
},
total: {
type: Number,
default: 15,
default: 12,
},
currentRound: {
type: String,
@@ -18,9 +18,9 @@ const props = defineProps({
});
const barColor = ref("");
const remain = ref(15);
const remain = ref(12);
const timer = ref(null);
const loading = ref(false);
const loading = ref(true);
const transitionStyle = ref("all 1s linear");
const currentTeam = ref(null);
const MIN_TICK_MS = 1;