一、新增模态框
首先绑定事件:
Ant design 里 modal 对话框
按照自己的需求,修改下参数 :
import { Modal, Button } from 'antd';
class Ad extends React.Component {
constructor(props) {
super(props);
this.state = {
newAdd: false, // 新增的
};
}
//请求数据
componentDidMount() {
this.init()
}
init(){
axios.get(`接口地址`).then( res => {
// console.log(res)
this.setState({
data:res.data.data
})
})
}
handleChange = e => {
this.setState(
{
checkNick: e.target.checked,
},
() => {
this.props.form.validateFields(['sort'], { force: true });
},
);
};
//新增模态框
addForm = () => {
this.setState