|
@@ -11,7 +11,7 @@ const BinPage: React.FC = () => {
|
|
|
const [drawerVisible, setDrawerVisible] = useState(false);
|
|
|
|
|
|
return (
|
|
|
- <div className="p-4">
|
|
|
+ <div className="h-full">
|
|
|
{screens.xs ? (
|
|
|
<>
|
|
|
<WorklistTable />
|
|
@@ -33,14 +33,14 @@ const BinPage: React.FC = () => {
|
|
|
</Drawer>
|
|
|
</>
|
|
|
) : (
|
|
|
- <Row gutter={16}>
|
|
|
+ <Row gutter={16} className='h-full'>
|
|
|
<Col span={screens.lg ? 18 : screens.md ? 20 : 24}>
|
|
|
<WorklistTable />
|
|
|
<div className="flex justify-center mt-4">
|
|
|
<Pagination defaultCurrent={1} total={50} />
|
|
|
</div>
|
|
|
</Col>
|
|
|
- <Col span={screens.lg ? 6 : screens.md ? 4 : 0}>
|
|
|
+ <Col span={screens.lg ? 6 : screens.md ? 4 : 0} className='h-full'>
|
|
|
<BinOperationPanel />
|
|
|
</Col>
|
|
|
</Row>
|