Authored by xuhongyun

build

... ... @@ -313,6 +313,25 @@ webpackJsonp([0],[
});
$(document).on('click', '#filter', function () {
var startTime = common.util.__input('beginTime');
var endTime = common.util.__input('endTime');
if(startTime == "") {
common.util.__tip('请设置开始时间', 'warning');
return;
}
var st = new Date(startTime.replace(/-/g,"/"));//将字符串转化为时间
var et;
if(endTime == "") {
et = new Date();
} else {
et = new Date(endTime.replace(/-/g,"/"));//将字符串转化为时间
}
var num = (et-st)/(1000*3600*24);//求出两个时间的时间差,这个是天数
var days = parseInt(Math.ceil(num));//转化为整天(小于零的话剧不用转了)
if(days>7) {
common.util.__tip('开始结束时间差不能超过7天', 'warning');
return;
}
g.reload();
});
... ...