2024-09-23 09:43:16 +08:00
|
|
|
import { Image } from "antd"
|
2025-04-09 17:43:19 +08:00
|
|
|
// import zd from '../../../assets/img/u0.png'
|
|
|
|
|
import zd from '../../../assets/img/wait.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'}}>
|
2025-04-10 16:35:52 +08:00
|
|
|
<Image src={zd} style={{margin:'auto',margin:'20px',height:'130px'}} preview={false}/>
|
2024-09-23 14:06:03 +08:00
|
|
|
</div>
|
2024-09-23 09:43:16 +08:00
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
export default Page
|