format(time) {
let days = (num)/(24*3600);
let hours = Math.floor((time)%(24*3600)/3600); //
let minutes = Math.floor((time)%3600/60);
let second = Math.floor((time%60);
return `${days}天${hours}小时${minutes}分钟${second}秒 `;
}
秒转换成 x天x小时x分钟x秒 的格式
最新推荐文章于 2023-11-29 09:32:51 发布