react+antd 渲染table内容时, 屏幕高度被拉长了。
使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
<Table columns={columns} dataSource={data} scroll={{ y: 你需要的高度 }}
多看文档