运行时间格式调整

This commit is contained in:
liuwei
2025-07-29 15:59:26 +08:00
parent e650e23ab4
commit b23656aadc

View File

@@ -269,7 +269,7 @@
let result = '';
if (days > 0) result += days + 'D';
if (hours > 0 || days > 0) result += hours + 'H ';
if (hours > 0 || days > 0) result += hours + 'H';
result += minutes + 'M';
return result;