yuyou_x
2024-02-23 565d1f64383ae6d71a9590e8bcfa474269b8dbb3
HTML/js/public.js
@@ -179,6 +179,9 @@
  var bodyHeight = $("#body").outerHeight();
  var topHeight = $("#top").outerHeight();
  var centerHeight = $("#center").outerHeight();
//   console.log(bodyHeight);
//   console.log(topHeight);
//   console.log(centerHeight);
  var hh = bodyHeight - topHeight-centerHeight - 26 ;//6是body上内边距 
  return hh;
@@ -207,6 +210,20 @@
  var h2 = parseInt(hh*0.4)
  return h2;
}
//获取除搜索条件以及页签外高度
function GetTableTabHeight() {
   var bodyHeight = $("#body").outerHeight();
   var topHeight = $("#top").outerHeight();
   var centerHeight = $("#center").outerHeight();
   var tabHeight = $("#tab").outerHeight();
   // console.log(bodyHeight);
   // console.log(topHeight);
   // console.log(centerHeight);
   // console.log(tabHeight);
   var hh = bodyHeight - topHeight-centerHeight-tabHeight - 57 ;//6是body上内边距
   return hh;
}
 
//判断是否正整数 true 正整数 false 其他
function isIntNum(val){