嗨,我是新来的朋友,我想在两个事件中使用单个按钮
这是我的第一个数组按钮
class Pick_up extends React.Component {
handleSubmit = event => {
event.preventDefault();
this.props.form.validateFields((err, values) => {
if (!err) {
console.log('Received values of form: ', values);
request.post('/custom-run/csv/validate', values);
}
});
};
及其第二个数组按钮在同一文件夹中,但路径不同
const Actions_Panel = observer(class Actions_Panel extends Component {
render() {
const { store } = this.props;
console.log({store});
return (
<Wrapper>
<Button
type="primary"
disabled={store.hasErrors}
onClick={store.submitTasks}
loading={store.loading} >
Proceed
</Button>
我想对两个事件都使用“继续”按钮