This commit is contained in:
parent
2e5803815b
commit
f6a9a2dac6
|
@ -66,35 +66,11 @@ export default function dragColumn(Table) {
|
|||
columns[index] = dragSourceColum;
|
||||
}
|
||||
}
|
||||
// let titles = [];
|
||||
// columns.forEach(da=>{
|
||||
// for(let attr of da){
|
||||
|
||||
// }
|
||||
// if(typeof da.title != "string"){
|
||||
// titles.push(da.title);
|
||||
// delete da.title;
|
||||
// }
|
||||
// });
|
||||
// let newColumns = null;
|
||||
// if(titles.length != 0){
|
||||
// newColumns = JSON.parse(JSON.stringify(columns));
|
||||
// for (let index = 0; index < newColumns.length; index++) {
|
||||
// newColumns[index].title = titles[index];
|
||||
// }
|
||||
// console.log("----columns----",newColumns);
|
||||
// }else{
|
||||
// newColumns = JSON.parse(JSON.stringify(columns));
|
||||
// }
|
||||
// this.setState({
|
||||
// columns:newColumns
|
||||
// });
|
||||
|
||||
this.setState({
|
||||
columns:cloneDeep(columns)
|
||||
});
|
||||
if(this.props.onDrop){
|
||||
this.props.onDrop(event,data,newColumns);
|
||||
this.props.onDrop(event,data,columns);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue