import { WeaNewScroll, WeaSearchGroup, WeaMoreButton, WeaTable } from 'ecCom' import { Spin, Button, Pagination } from 'antd' import { WeaSwitch } from 'comsMobx' import { i18n } from '../public/i18n'; import '../style/common.less'; export default class NewWeaTable extends React.Component { constructor(props) { super(props); } render() { const { dataSource, columns, rowSelection, loading, indentSize } = this.props const pagination = { total: dataSource.length, showSizeChanger: true, showQuickJumper: true, onShowSizeChange(current, pageSize) { }, onChange(current) { }, showTotal(total){ return `共 ${total} 条` } }; return ( loading ?