From aeef4a356a3ea2bcd28f97e7b036d741d792ec2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A9=AC=E7=99=BB=E5=B1=B1?= Date: Wed, 28 May 2025 17:22:24 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=20=E4=BF=AE=E6=94=B9=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/performance/index.vue | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pages/performance/index.vue b/pages/performance/index.vue index 1fa3f51..c4c5672 100644 --- a/pages/performance/index.vue +++ b/pages/performance/index.vue @@ -188,15 +188,15 @@
{{ drive.drive_path }}
- - {{ niceBytes(drive.used_space) }} + + {{ niceBytes(drive.usedspace) }}
-
{{ niceBytes(drive.total_space) }}
+
{{ niceBytes(drive.totalspace) }}
{{ t('Total Space') }}
-
{{ niceBytes(drive.used_space) }}
+
{{ niceBytes(drive.usedspace) }}
{{ t('Used') }}
-
{{ niceBytes(drive.available_space) }}
+
{{ niceBytes(drive.availspace) }}
{{ t('Available') }}
@@ -235,7 +235,6 @@ const getMetricsInfo = async () => { for await (const data of $api.streamRequest(url, options)) { // æ›´æ–°metricsInfo.value metricsInfo.value = { ...metricsInfo.value, ...data }; - console.log(metricsInfo.value ) } };