Vue JS从时刻开始多次加法

时间:2019-03-13 07:05:18

标签: laravel vue.js vuejs2 momentjs vue-component

This is how my function renders the value as subtotal of each punch_in and punch_out and now i want Total of every subtotal as displayed in above table

这是我的函数将值呈现为每个punch_in和punch_out小计的方式,现在我想要如上表所示的每个小计的总计

这是我的函数,其中计算出打孔和打孔的总时间   但我担心的是如何将它们作为有效时间添加到一个变量中,我们将为您提供任何帮助

我想输出上述时间作为加法,就像:01:13:15 + 02:00:05 = 03:13:20

 calculate_time : function(end,start)
 {                       
      if(start!=null){
           this.$in = start; 
      }
      else if(end!=null){
            this.$out = end; 
            this.$diff = moment.utc(moment(this.$out).diff(moment(this.$in))).format("HH:mm:ss");                          
            return this.$diff;
      } 
  }

0 个答案:

没有答案