VUE前端項(xiàng)目使用
timeStyle(v){
var theTime = parseInt(v==null?0:v); // 秒
var theTime1 = 0; // 分
var theTime2 = 0; // 小時(shí)
if (theTime > 60) {
theTime1 = parseInt(theTime / 60);
theTime = parseInt(theTime % 60);
if (theTime1 > 60) {
theTime2 = parseInt(theTime1 / 60);
theTime1 = parseInt(theTime1 % 60);
}
}
var result = "" + parseInt(theTime) + "秒";
if (theTime1 > 0) {
result = "" + parseInt(theTime1) + "分" + result;
}
if (theTime2 > 0) {
result = "" + parseInt(theTime2) + "小時(shí)" + result;
}
return result;
},