diff --git a/src/main/webapp/WEB-INF/views/report/list.jsp b/src/main/webapp/WEB-INF/views/report/list.jsp
index 2dd24d5ca..20c89fec7 100644
--- a/src/main/webapp/WEB-INF/views/report/list.jsp
+++ b/src/main/webapp/WEB-INF/views/report/list.jsp
@@ -38,9 +38,9 @@
$("a[data-toggle='tab']").on("click",function(){
$("#reportBusinessType").val($(this).data("bussiness"));
if(!$(this).parent("li").hasClass("active")){
- var action=$('select[name="action"]').val();
- var reportBusinessType=$("#reportBusinessType").val();
- var reportType=$('input[name="reportType"]:checked').val();
+ //var action=$('select[name="action"]').val();
+ //var reportBusinessType=$("#reportBusinessType").val();
+ //var reportType=$('input[name="reportType"]:checked').val();
if($(this).data("bussiness")=="label_report"){
ajaxGetLabelReport();
}else if($(this).data("bussiness")=="lwhh_report"){
@@ -64,6 +64,7 @@
}
var ajaxGetLabelReport=function(){
+ loading('');
$.ajax({
type:'post',
async:false,
@@ -75,10 +76,12 @@ var ajaxGetLabelReport=function(){
dataType:"html",
success:function(data){
$("#label").html(data);
+ closeTip();
}
});
}
var ajaxGetLwhhReport=function(){
+ loading('');
$.ajax({
type:'post',
async:false,
@@ -90,6 +93,7 @@ var ajaxGetLwhhReport=function(){
dataType:"html",
success:function(data){
$("#lwhh").html(data);
+ closeTip();
}
});
}
@@ -233,4 +237,4 @@ var ajaxGetLwhhReport=function(){