tsg-web/src/views/sz/szzf/clyj/index.js

21 lines
493 B
JavaScript
Raw Normal View History

2024-09-24 14:37:41 +08:00
import { Card } from 'antd'
import TreeSelectZdy from './treeSelectZdy'
2024-09-23 18:03:30 +08:00
2024-09-24 14:37:41 +08:00
import ContentPage from './content'
2024-09-23 18:03:30 +08:00
2024-09-24 14:37:41 +08:00
const Page = () => {
2024-09-23 18:03:30 +08:00
return (
2024-09-24 14:37:41 +08:00
<div style={{display:'flex',height: '100%'}}>
<div style={{ width: 320, backgroundColor: '#fff', padding: 10 }}>
<TreeSelectZdy />
2024-09-23 18:03:30 +08:00
</div>
2024-09-24 14:37:41 +08:00
<div style={{ flex:1 ,marginLeft:10}}>
<ContentPage />
</div>
</div>
)
2024-09-23 18:03:30 +08:00
}
2024-09-24 14:37:41 +08:00
export default Page