diff --git a/src/components/TrainingScorePanel.vue b/src/components/TrainingScorePanel.vue index f374281..b034ecc 100644 --- a/src/components/TrainingScorePanel.vue +++ b/src/components/TrainingScorePanel.vue @@ -30,7 +30,13 @@ const getDisplayText = (arrow = {}) => { const isFailed = (arrow = {}) => { if (!arrow) return false; - if (props.recordMode && props.trainingType !== "precision") return false; + if ( + props.recordMode && + props.trainingType !== "precision" && + props.trainingType !== "rhythm" + ) { + return false; + } return arrow.ok !== true; }; diff --git a/src/pages/training/index.vue b/src/pages/training/index.vue index e765997..8db9420 100644 --- a/src/pages/training/index.vue +++ b/src/pages/training/index.vue @@ -484,7 +484,7 @@ onShow(async () => { 我的训练记录 diff --git a/src/static/training-home/img_right.png b/src/static/training-home/img_right.png new file mode 100644 index 0000000..78402cf Binary files /dev/null and b/src/static/training-home/img_right.png differ