码迷,mamicode.com
首页 > Web开发 > 详细

js-秒数转为XX时XX分XX秒(用于计算剩余时间或倒计时)

时间:2020-02-19 16:41:07      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:class   method   min   return   null   倒计时   计时   eth   color   

export default {
  data() {
    return {
      hours: null,
      minute: null,
      second: null
    }
  },
  methods: {
    // 秒数 转为 XX时XX分XX秒   time = 传入的秒数
    formatTime(time) {
      this.hours = Math.floor(time / 3600)
      this.minute = Math.floor(Math.floor(time % 3600) / 60)
      this.second = time % 60
      this.hours =
        this.hours.toString().length === 1 ? `0${this.hours}` : this.hours
      this.minute =
        this.minute.toString().length === 1 ? `0${this.minute}` : this.minute
      this.second =
        this.second.toString().length === 1 ? `0${this.second}` : this.second
      return this.hours + ‘时‘ + this.minute + ‘分‘ + this.second + ‘秒‘
    }
  }
}

 

js-秒数转为XX时XX分XX秒(用于计算剩余时间或倒计时)

标签:class   method   min   return   null   倒计时   计时   eth   color   

原文地址:https://www.cnblogs.com/maxiansheng/p/12331746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!