This commit is contained in:
daihh
2022-11-02 10:54:21 +08:00

View File

@@ -440,6 +440,9 @@ export function formatSecondToHour(second) {
second = Number(second);
var h = second / 3600;
h = h.toFixed(n);
if(isNaN(h)){
h = 0;
}
return h;
}
// 秒换成时分秒