vue根据秒数转换成对应的时分秒
// 根据秒数转换成对应的时分秒export function getHMS(time) {const hour = parseInt(time / 3600) < 10 ? '0' + parseInt(time / 3600) : parseInt(time / 3600)const min = parseInt(time % 3600 / 60) < 10 ? '0' + par
·
// 根据秒数转换成对应的时分秒
export function getHMS(time) {
const hour = parseInt(time / 3600) < 10 ? '0' + parseInt(time / 3600) : parseInt(time / 3600)
const min = parseInt(time % 3600 / 60) < 10 ? '0' + parseInt(time % 3600 / 60) : parseInt(time % 3600 / 60)
const sec = parseInt(time % 3600 % 60) < 10 ? '0' + parseInt(time % 3600 % 60) : parseInt(time % 3600 % 60)
return hour + ':' + min + ':' + sec
}
更多推荐
已为社区贡献1条内容
所有评论(0)