21 lines
493 B
JavaScript
21 lines
493 B
JavaScript
import { Card } from 'antd'
|
|
import TreeSelectZdy from './treeSelectZdy'
|
|
|
|
import ContentPage from './content'
|
|
|
|
|
|
const Page = () => {
|
|
|
|
return (
|
|
<div style={{display:'flex',height: '100%'}}>
|
|
<div style={{ width: 320, backgroundColor: '#fff', padding: 10 }}>
|
|
<TreeSelectZdy />
|
|
</div>
|
|
<div style={{ flex:1 ,marginLeft:10}}>
|
|
<ContentPage />
|
|
</div>
|
|
|
|
</div>
|
|
)
|
|
}
|
|
export default Page |