Commit 5379a8af298954c902c5d5434847e622c0cd6753
1 parent
66a6d897
1.五彩::汇总数据被分页条遮挡了
Showing
1 changed file
with
5 additions
and
0 deletions
src/components/Common/CommonListTab/index.js
| ... | ... | @@ -468,6 +468,11 @@ const CommonListTabComponent = Form.create({ |
| 468 | 468 | } |
| 469 | 469 | } |
| 470 | 470 | |
| 471 | + const realHeight = window.screen.height * window.devicePixelRatio; | |
| 472 | + | |
| 473 | + if (realHeight < 1600) { | |
| 474 | + slave0TableHeight = slave0TableHeight - 50; | |
| 475 | + } | |
| 471 | 476 | const pagination = { |
| 472 | 477 | pageSize: commonUtils.isNotEmptyNumber(props.iPageSize) && props.iPageSize !== 0 ? props.iPageSize : commonConfig.pageSize, |
| 473 | 478 | ...slavePagination, | ... | ... |