diff --git a/frontend/views/menu/index.php b/frontend/views/menu/index.php index 0cc8482..7ea3ced 100644 --- a/frontend/views/menu/index.php +++ b/frontend/views/menu/index.php @@ -99,27 +99,8 @@ use \common\libs\MyLib; } }); } - - //使得table有一定的高度,出现滚动条 - function table(){ - //获取body高度 - var a=$(".gray-bg").height(); - //获取条件选择高度 - var b=$('#searchFrm').height(); - //获取标题高度 - var c=$('.ibox-title').height(); - //获取table高度 - var e=$(".fixed-table-body").height(); - var d=a-c-100; - - $('.fixed-table-body').css({'height':d}); - - - } $(function() { search(); - table(); - }); endBlock(); ?> diff --git a/frontend/views/permissions/index.php b/frontend/views/permissions/index.php index c8918a6..6e05908 100644 --- a/frontend/views/permissions/index.php +++ b/frontend/views/permissions/index.php @@ -96,24 +96,8 @@ use \common\libs\MyLib; } }); } - - //使得table有一定的高度,出现滚动条 - function table(){ - //获取body高度 - var a=$(".gray-bg").height(); - //获取标题高度 - var c=$('.ibox-title').height(); - //获取table高度 - var e=$(".fixed-table-body").height(); - console.log(e); - var d=a-c-100; - - $('.fixed-table-body').css({'height':d}); - - } $(function() { search(); - table(); }); endBlock(); ?>