react+antd 渲染table内容时, 屏幕高度被拉长了。

发布于 2022-09-06 21:05:27 字数 1007 浏览 12 评论 0

使用react+antd做一个简单项目时,向以下代码中的Table做了记录的重绘,所有的布局的height和width都采用了百分比的方式,table里面的资料少时,界面正常,记录一多,内容高度大与div高度时,界面就被拉伸了,我给table设置了自动滚轮,拉伸的目测是外边整个div的高度,何解?
<Row style={{background: '#ddf2da',height: '77.5%'}}>

<Col span="16" style={{background: '#fff',height: '100%'}}>
 <Row type="flex" justify="center" style={{background: '#7ed37a', height: '7.5%' }}>
   <Col><h2>查询结果</h2></Col>
 </Row>
<div style={{overflow:"auto",background: '#fff', height:'92.5%'}}>
     <Table  columns={columns} dataSource={this.state.dataLst} />
 </div>

</Col>

<Col span="8"  style={{background: '#fff',height: '100%'}}>
  <Row style={{background: '#52f',height: '75%'}}>
     <Col span="24">
     </Col>
  </Row>
  <Row style={{background: '#fff',height: '25%'}}>
     <Col span="24">
     </Col>
  </Row>

</Col>
</Row>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧夏天 2022-09-13 21:05:27

<Table columns={columns} dataSource={data} scroll={{ y: 你需要的高度 }}

多看文档

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文