|
@@ -11,7 +11,15 @@ const ImageProcessingPageLarge = () => {
|
|
|
<Layout>
|
|
|
<Header>Image Processing Page</Header>
|
|
|
<Layout>
|
|
|
- <Sider width={200}>
|
|
|
+ <Sider width={200} className="custom-sider">
|
|
|
+ {/**使用style注入方式修改Sider内部div的样式,使体位列表显示出体位信息 */}
|
|
|
+ <style>{`
|
|
|
+ .custom-sider > .ant-layout-sider-children {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ `}</style>
|
|
|
<BodyPositionList layout="vertical" showAddButton={false} />
|
|
|
</Sider>
|
|
|
<Content>
|