salary-management-front/pc4mobx/hrmSalary/pages/socialSecurityBenefits/programme/copySchemaModal.js

28 lines
875 B
JavaScript
Raw Normal View History

2022-03-21 19:54:16 +08:00
import React from 'react'
import { Modal, Row, Col } from "antd"
import { WeaInput } from 'ecCom'
export default class CopySchemaModal extends React.Component {
2022-05-18 17:10:12 +08:00
constructor(props){
super(props)
this.state = {
value : ""
}
}
2022-03-21 19:54:16 +08:00
render() {
return (
<Modal title="复制社保方案" footer={this.props.footer} onCancel={() => this.props.onCancel()} visible={this.props.visible}>
<Row>
<Col span={6}>
方案名称
</Col>
<Col span={18}>
2022-05-18 17:10:12 +08:00
<WeaInput value={this.state.value} onChange={(v) =>{
this.setState({value: v})
this.props.onChange(v)}} />
2022-03-21 19:54:16 +08:00
</Col>
</Row>
</Modal>
)
}
}