tsg-web/src/views/sq/qfg/zcdjxx.js

10 lines
383 B
JavaScript
Raw Normal View History

2024-09-23 09:43:16 +08:00
import { Image } from "antd"
2024-09-23 14:06:03 +08:00
import zd from '../../../assets/img/u0.png'
2024-09-23 09:43:16 +08:00
const Page = () => {
return (
2024-09-30 15:40:57 +08:00
<div style={{display:'flex',justifyContent:'center',alignItems:'center',backgroundColor:'#fff',height:'100%',padding:'20px'}}>
<Image src={zd} style={{margin:'auto',margin:'20px',height:'750px'}} preview={false}/>
2024-09-23 14:06:03 +08:00
</div>
2024-09-23 09:43:16 +08:00
)
}
export default Page