import React from 'react'; import { Table } from 'antd'; export default function DetialTable(props) { const { columns, data = [], rowKey= 'id', size = 'default', scroll, onChange, total = 0, curIndex, pageSize = 15, pagination = true, expandedRowRender = false, onExpand = false, ellipsis = false, rowClassName, onHeaderRow } = props return (
`共 ${total} 条` }} ellipsis={ellipsis} scroll={scroll} onExpand={onExpand} expandedRowRender={expandedRowRender} onChange={(pagination, filters, sorter, extra) => onChange(pagination, filters, sorter, extra)} /> ); }