From 29f200adb9e2744a0c37e2b538d575924e5a6337 Mon Sep 17 00:00:00 2001 From: MJ Date: Sat, 23 Aug 2025 23:45:48 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=98=BE=E7=A4=BA=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/academic-report/index.vue | 4 ++-- src/pages/mine/Components/recharge/index.vue | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/pages/academic-report/index.vue b/src/pages/academic-report/index.vue index f3f793d..ed538d5 100644 --- a/src/pages/academic-report/index.vue +++ b/src/pages/academic-report/index.vue @@ -281,7 +281,7 @@ onMounted(() => { 语感训练句子 - {{ showChildData.learnTime || 0 }} + {{ secondsToHours(showChildData.learnTime) }} 有效学习时长 @@ -311,7 +311,7 @@ onMounted(() => { 订正正确 - {{ showChildData.learnTime || 0 }} + {{ secondsToHours(showChildData.learnTime) }} 有效学习时长 diff --git a/src/pages/mine/Components/recharge/index.vue b/src/pages/mine/Components/recharge/index.vue index 52e359a..89353dc 100644 --- a/src/pages/mine/Components/recharge/index.vue +++ b/src/pages/mine/Components/recharge/index.vue @@ -18,6 +18,10 @@ const show = computed({ get: () => props.modelValue, set: val => { emit('update:modelValue', val) + if (!val) { + customMoney.value = '' + moneyType.value = defaultMoneyType + } }, })