diff --git a/src/pages/word/WordsPage.vue b/src/pages/word/WordsPage.vue index 24e92bdb..99e2d871 100644 --- a/src/pages/word/WordsPage.vue +++ b/src/pages/word/WordsPage.vue @@ -438,6 +438,7 @@ const systemPracticeText = $computed(() => { @@ -445,6 +446,7 @@ const systemPracticeText = $computed(() => { (showShufflePracticeSettingDialog = true))" > diff --git a/src/pages/word/components/Footer.vue b/src/pages/word/components/Footer.vue index dae22c88..7a5ae078 100644 --- a/src/pages/word/components/Footer.vue +++ b/src/pages/word/components/Footer.vue @@ -2,8 +2,13 @@ import { inject, Ref } from 'vue' import { usePracticeStore } from '@/stores/practice.ts' import { useSettingStore } from '@/stores/setting.ts' -import { PracticeData, ShortcutKey, - WordPracticeMode, WordPracticeModeStageMap, WordPracticeStage, WordPracticeStageNameMap } from '@/types/types.ts' +import { + PracticeData, + ShortcutKey, + WordPracticeMode, + WordPracticeModeStageMap, + WordPracticeStageNameMap, +} from '@/types/types.ts' import BaseIcon from '@/components/BaseIcon.vue' import Tooltip from '@/components/base/Tooltip.vue' import Progress from '@/components/base/Progress.vue' @@ -46,7 +51,6 @@ const progress = $computed(() => { if (!practiceData.words.length) return 0 return (practiceData.index / practiceData.words.length) * 100 }) - @@ -61,7 +65,14 @@ const progress = $computed(() => { - + + + + + @@ -99,7 +110,7 @@ const progress = $computed(() => {