fix: fix search height

This commit is contained in:
fantasticit 2022-03-18 17:26:41 +08:00
parent 3826ec4a78
commit 0970b00cb1
1 changed files with 4 additions and 1 deletions

View File

@ -106,6 +106,9 @@ export const Search = () => {
style={{ style={{
maxWidth: '96vw', maxWidth: '96vw',
}} }}
bodyStyle={{
height: '68vh',
}}
> >
<div style={{ paddingBottom: 24 }}> <div style={{ paddingBottom: 24 }}>
<div> <div>
@ -122,7 +125,7 @@ export const Search = () => {
showClear showClear
/> />
</div> </div>
<div style={{ maxHeight: '70vh', overflow: 'auto' }}> <div style={{ height: 'calc(68vh - 40px)', paddingBottom: 36, overflow: 'auto' }}>
<DataRender <DataRender
loading={loading} loading={loading}
loadingContent={ loadingContent={