import React from 'react'; import { Form, Button, Table } from 'antd'; import { BorderInnerOutlined } from "@ant-design/icons" import { getItemProps } from "../../utils" import schema from "./schema" import styles from "./table.module.less" const TableWapper = (item: any) => { const data: any = getItemProps(schema, item) const { ControlProps, FormItemProps, FooterProps } = data const { columns, dataSource = [], rowKey } = ControlProps const { ishidden: FooterIsHidden, onClick } = FooterProps const TableBox = () => { return <> { if (FooterIsHidden) { return null } else { return
} }} /> } return } export default TableWapper