function formatSecToDate(sec){
if(!sec){
return '-'
}
var min = Math.floor(sec%3600);//分钟
return Math.floor(sec/3600) + "时" + Math.floor(min/60) + "分"+ sec%60 + "秒";
}
function formatSecToDate(sec){
if(!sec){
return '-'
}
var min = Math.floor(sec%3600);//分钟
return Math.floor(sec/3600) + "时" + Math.floor(min/60) + "分"+ sec%60 + "秒";
}