Commit b077dabd authored by agping's avatar agping

1

parent ee751cb0
...@@ -128,6 +128,14 @@ define (['doT', 'text!temp/performanceContrast_template_tpl.html','ckfinder','ck ...@@ -128,6 +128,14 @@ define (['doT', 'text!temp/performanceContrast_template_tpl.html','ckfinder','ck
alert('请选择业绩对比时间'); alert('请选择业绩对比时间');
return; return;
}
if(params.real_performance_time_end*1 < params.real_performance_time_start*1){
alert('实收对比开始时间须大于实收对比结束时间');
return;
}
if(params.performance_time_end*1 < params.performance_time_start*1){
alert('业绩对比开始时间须大于业绩对比结束时间');
return;
} }
$(".search-con").hide();//隐藏提示内容 $(".search-con").hide();//隐藏提示内容
$.ajax ({ $.ajax ({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment