From 82a9ca361a70d062b6d9887575930208cb18add4 Mon Sep 17 00:00:00 2001 From: liuwei Date: Mon, 23 Jun 2025 10:14:03 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin/dashboard/templates/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/admin/dashboard/templates/index.html b/admin/dashboard/templates/index.html index 610930b..ca3a785 100644 --- a/admin/dashboard/templates/index.html +++ b/admin/dashboard/templates/index.html @@ -268,9 +268,9 @@ const minutes = Math.floor((seconds % 3600) / 60); let result = ''; - if (days > 0) result += days + '天 '; - if (hours > 0 || days > 0) result += hours + '小时 '; - result += minutes + '分钟'; + if (days > 0) result += days + 'D'; + if (hours > 0 || days > 0) result += hours + 'H '; + result += minutes + 'M'; return result; }