拖拽后将columns返回
This commit is contained in:
parent
02ef9f893e
commit
dcaa8df065
|
@ -112,7 +112,7 @@ function dragColumn(Table) {
|
|||
columns: _columns.slice()
|
||||
});
|
||||
if (_this.props.onDrop) {
|
||||
_this.props.onDrop(event, data);
|
||||
_this.props.onDrop(event, data, columns);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -60406,7 +60406,7 @@
|
|||
columns: _columns.slice()
|
||||
});
|
||||
if (_this.props.onDrop) {
|
||||
_this.props.onDrop(event, data);
|
||||
_this.props.onDrop(event, data, columns);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -84,7 +84,7 @@ export default function dragColumn(Table) {
|
|||
columns:_columns.slice()
|
||||
});
|
||||
if(this.props.onDrop){
|
||||
this.props.onDrop(event,data);
|
||||
this.props.onDrop(event,data,columns);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue