Authored by xuhongyun

build

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