bug1. 文件路径/common/util.js
的时间不对
// 此处将getDay(),修改为getDate() ↓这里是bug
return date.getFullYear() + '/' + _format(date.getMonth() + 1) + '/' + _format(date.getDate()) + '-' +
_format(date.getHours()) + ':' + _format(date.getMinutes());
// 同时建议添加时间戳转为Date对象返回
if(typeof(time)=='number'){
return new Date(time*1000);
}