固定表头方法,直接在js里面设置一定的高度

webUi
赵桐华 5 years ago
parent 03ba2a35e4
commit 52b7ce78cc
  1. 15
      frontend/views/menu/index.php
  2. 3
      frontend/views/permissions/index.php

@ -104,11 +104,20 @@ use \common\libs\MyLib;
function table(){
//获取body高度
var a=$(".gray-bg").height();
//获取条件选择高度
var b=$('#searchFrm').height();
//获取标题高度
var c=$('.ibox-title').height();
$('.fixed-table-body').css({'height': a-b-c-100});
//获取条件选择高度
var b=$('#searchFrm').height();
//获取table高度
var e=$("row").height();
var d=a-c-b-100;
if(e>d){
$('.fixed-table-body').css({'height':d});
console.log("滚动条");
}else{
$('.fixed-table-body').css({'height':e});
console.log("没有滚动条");
}
}
$(function() {
search();

@ -105,14 +105,15 @@ use \common\libs\MyLib;
var c=$('.ibox-title').height();
//获取条件选择高度
var b=$('#searchFrm').height();
console.log(b);
//获取table高度
var e=$("row").height();
var d=a-c-b-100;
if(e>d){
$('.fixed-table-body').css({'height':d});
console.log("滚动条");
}else{
$('.fixed-table-body').css({'height':e});
console.log("没有滚动条");
}
}

Loading…
Cancel
Save