mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-05 05:18:34 +08:00
修复时间转换问题
This commit is contained in:
parent
035b914a4f
commit
de4433fbc2
@ -54,7 +54,7 @@ export function formatDuration(value: number): string {
|
||||
|
||||
while (len--) {
|
||||
if (steps[len] && value >= steps[len]) {
|
||||
parts.push(Math.round(value / steps[len]) + unit[len]);
|
||||
parts.push(Math.floor(value / steps[len]) + unit[len]);
|
||||
value %= steps[len];
|
||||
} else if (len === 0 && value) {
|
||||
parts.push((value.toFixed ? value.toFixed(2) : '0') + unit[0]);
|
||||
|
Loading…
Reference in New Issue
Block a user