From 9003a038cfa9b6706094332c3e7bdb972ef8e337 Mon Sep 17 00:00:00 2001 From: hwj Date: Thu, 2 Jul 2026 12:00:03 +0800 Subject: [PATCH] =?UTF-8?q?style=EF=BC=9A=E9=A6=96=E9=A1=B5-=E8=BF=917?= =?UTF-8?q?=E6=97=A5=E5=B9=B3=E5=9D=87=E7=A8=BC=E5=8A=A8=E7=8E=87=E6=8E=92?= =?UTF-8?q?=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/dashboard/DeviceSection.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dashboard/DeviceSection.vue b/src/components/dashboard/DeviceSection.vue index c9138ff..9778ed2 100644 --- a/src/components/dashboard/DeviceSection.vue +++ b/src/components/dashboard/DeviceSection.vue @@ -336,7 +336,7 @@ async function loadUtilizationRanking() { const vb = parseFloat(b.utilizationRate) || 0 return vb - va }) - const categories = sorted.map((item) => item.deviceName || '') + const categories = sorted.map((item) => formatRankingAxisLabel(item.deviceName || '')) const data = sorted.map((item) => { const v = parseFloat(item.utilizationRate) return isNaN(v) ? 0 : Math.round(v * 100) / 100