salary-management-front/pc4mobx/hrmSalary/components/importModal/modalStep3.js

22 lines
1.1 KiB
JavaScript
Raw Normal View History

2022-03-07 19:33:56 +08:00
import React from "react"
import successImg from "./success.svg"
import { Button } from "antd"
export default class ModalStep3 extends React.Component {
render() {
return (
<div style={{textAlign: "center", marginTop: "10px", overflow: "hidden", height: "550px", display:"flex", flexFlow: "column" }}>
<div style={{flex: "1",display: "flex", justifyContent: "center", alignItems: "center"}}>
<div>
<img src={successImg} style={{marginBottom: "10px"}} />
<div style={{fontSize: "20px", marginBottom: "10px"}}>数据导入完成</div>
<div>已导入 <span style={{color: ""}}>158</span> <span style={{color: ""}}> 2 </span></div>
</div>
</div>
<div className="footerBtnWrapper" style={{height: "30px"}}>
<Button type="primary" style={{float: "right"}} onClick={this.props.onFinish}>完成</Button>
</div>
</div>
)
}
}