这是我的函数将值呈现为每个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;
}
}