import * as React from 'react'; import { Table, Drawer } from 'kts-xui'; /** Props接口 */ interface IProps { data: any; // list: string[]; onClose: () => void; } export default class UIComponents extends React.Component { columns = [ { title: '单据名称', dataIndex: 'originalDocument', width: 240, }, ]; constructor(props) { super(props); } render() { const { data } = this.props; const { originalDocList = [] } = data; return ( <> ); } }