seconds to minutes
How to convert seconds to minutes and hours in javascript - Stack Overflow
secondTransferTime: function(t) {
return t > 3600 ? [ parseInt(t / 60 / 60), parseInt(t / 60 % 60), parseInt(t % 60) ].join(":").replace(/\b(\d)\b/g, "0$1") : [ parseInt(t / 60 % 60), parseInt(t % 60) ].join(":").replace(/\b(\d)\b/g, "0$1");
},

浙公网安备 33010602011771号