diff --git a/components/Table/index.js b/components/Table/index.js index a754f05..22230a6 100644 --- a/components/Table/index.js +++ b/components/Table/index.js @@ -11,13 +11,11 @@ function TablePro(props) { rowKey = "id", ...restProps } = props; - - const storeIndex = props.storeIndex || `${window.process.env.app.antd["ant-prefix"]}_${Math.random().toString(36).substring(2)}`; function calcColumns() { showIndexColumn && columns.unshift({...getIndexColumn(props.pagination), fixed: indexColumnFixed}); return columns.map(item => ({ align: useAlignCenter ? "center" : "left", ...item })); } - return ; + return
; } export default TablePro;