Compare commits

..

No commits in common. "4f0f3657428e4922c8f361916e892e707637787e" and "05d3bb9e229cf2f41101b453e5a473f031977c5c" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
import TablePro from "@cqsjjb/jjb-react-admin-component/Table"; import Table from "@cqsjjb/jjb-react-admin-component/Table";
import { getIndexColumn } from "../../utils/index"; import { getIndexColumn } from "../../utils/index";
import "./index.less"; import "./index.less";
@ -15,7 +15,7 @@ function Table(props) {
showIndexColumn && columns.unshift({...getIndexColumn(props.pagination), fixed: indexColumnFixed}); showIndexColumn && columns.unshift({...getIndexColumn(props.pagination), fixed: indexColumnFixed});
return columns.map(item => ({ align: useAlignCenter ? "center" : "left", ...item })); return columns.map(item => ({ align: useAlignCenter ? "center" : "left", ...item }));
} }
return <TablePro rowKey={rowKey} columns={calcColumns()} {...restProps} />; return <Table rowKey={rowKey} columns={calcColumns()} {...restProps} />;
} }
export default Table; export default Table;

View File

@ -1,7 +1,7 @@
{ {
"name": "zy-react-library", "name": "zy-react-library",
"private": false, "private": false,
"version": "1.0.88", "version": "1.0.87",
"type": "module", "type": "module",
"description": "", "description": "",
"author": "LiuJiaNan", "author": "LiuJiaNan",