@bit-sun/business-component 4.0.11-alpha.27 → 4.0.11-alpha.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bit-sun/business-component",
3
- "version": "4.0.11-alpha.27",
3
+ "version": "4.0.11-alpha.28",
4
4
  "scripts": {
5
5
  "start": "dumi dev",
6
6
  "docs:build": "dumi build",
@@ -97,7 +97,7 @@
97
97
  .ant-modal-body {
98
98
  padding: 0px;
99
99
  background: #F3F3F3;
100
- height: 624px; // modal弹窗760 调整为700 适应小屏
100
+ height: calc(100vh - 235px); // modal弹窗760 调整为700 适应小屏
101
101
  overflow: hidden;
102
102
  }
103
103
  .ant-modal-footer {
@@ -833,9 +833,9 @@ const SearchSelect = forwardRef((props: any, ref: any) => {
833
833
 
834
834
  const renderShowTable = (tableList, type) => {
835
835
  const tableBoxHeighth = getTableHeigth(modalTableProps?.tableSearchForm);
836
- const oSY = tableBoxHeighth - 82 // 分页 24+16*2+10 「高 + margin * 2 + paddingBottom 10 」
836
+ const oSY = `calc(100vh - 391px - 82px)`; // 分页 24+16*2+10 「高 + margin * 2 + paddingBottom 10 」
837
837
  return (
838
- <div style={{ height: `${tableBoxHeighth}px` }}>
838
+ <div style={{ height: `calc(100vh - 391px)` }}>
839
839
  <Table
840
840
  bordered
841
841
  size="middle"