Showing
1 changed file
with
19 additions
and
0 deletions
@@ -309,6 +309,25 @@ $(document).on('click', '.guangSynFlag', function () { | @@ -309,6 +309,25 @@ $(document).on('click', '.guangSynFlag', function () { | ||
309 | }); | 309 | }); |
310 | 310 | ||
311 | $(document).on('click', '#filter', function () { | 311 | $(document).on('click', '#filter', function () { |
312 | + var startTime = common.util.__input('beginTime'); | ||
313 | + var endTime = common.util.__input('endTime'); | ||
314 | + if(startTime == "") { | ||
315 | + common.util.__tip('请设置开始时间', 'warning'); | ||
316 | + return; | ||
317 | + } | ||
318 | + var st = new Date(startTime.replace(/-/g,"/"));//将字符串转化为时间 | ||
319 | + var et; | ||
320 | + if(endTime == "") { | ||
321 | + et = new Date(); | ||
322 | + } else { | ||
323 | + et = new Date(endTime.replace(/-/g,"/"));//将字符串转化为时间 | ||
324 | + } | ||
325 | + var num = (et-st)/(1000*3600*24);//求出两个时间的时间差,这个是天数 | ||
326 | + var days = parseInt(Math.ceil(num));//转化为整天(小于零的话剧不用转了) | ||
327 | + if(days>7) { | ||
328 | + common.util.__tip('开始结束时间差不能超过7天', 'warning'); | ||
329 | + return; | ||
330 | + } | ||
312 | g.reload(); | 331 | g.reload(); |
313 | }); | 332 | }); |
314 | 333 |
-
Please register or login to post a comment