解决filter打开之后,左右滚动条消失了

添加说话人识别、人脸识别、台标识别日志查询
This commit is contained in:
leijun
2018-09-17 16:24:32 +08:00
parent 9b101f0911
commit b1cc511185
8 changed files with 1146 additions and 0 deletions

View File

@@ -320,6 +320,15 @@ function filterActionInit() {
$("#isFilterAction").val("true");
fiterPanleShow();
}
//调整滚动条div的高度
var he=document.getElementsByClassName("filter-action-select-panle")[0].offsetHeight;
var height=document.documentElement.clientHeight;
if(he>0){
he+=5;
}
if($('.table-responsive')){
$('.table-responsive').css({'height':height-105-he+'px'});
}
});
}