update:新增稳定训练

This commit is contained in:
2026-08-26 15:23:02 +08:00
parent 45bc324f70
commit 96b64e4187
15 changed files with 645 additions and 25 deletions
+3 -2
View File
@@ -24,7 +24,7 @@ const props = defineProps({
const getDisplayText = (arrow = {}) => {
if (!arrow) return "";
if (!arrow.ring) return "0";
if (!arrow.ring) return props.trainingType === "stability" ? "-" : "0";
return arrow.ringX ? "X" : String(arrow.ring);
};
@@ -33,7 +33,8 @@ const isFailed = (arrow = {}) => {
if (
props.recordMode &&
props.trainingType !== "precision" &&
props.trainingType !== "rhythm"
props.trainingType !== "rhythm" &&
props.trainingType !== "stability"
) {
return false;
}