From f6a9a2dac683beeabc2ddd78de566672888f7897 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cjonyshi=E2=80=9D?= Date: Tue, 4 Dec 2018 09:24:19 +0800 Subject: [PATCH] . --- src/lib/dragColumn.js | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/src/lib/dragColumn.js b/src/lib/dragColumn.js index e4dff9d..9566abc 100644 --- a/src/lib/dragColumn.js +++ b/src/lib/dragColumn.js @@ -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); } }