import * as React from 'react'; import { Button, Drawer, Input, Form } from 'kts-xui'; import { FormInstance } from 'kts-components-antd-x4/lib/form'; /** Props接口 */ interface IProps { onClose: () => void; onSuccess: () => void; list: string[]; } export default class UIComponents extends React.Component { formRef:any = React.createRef(); constructor(props) { super(props); this.state = { list: props.list } console.log(props.list); } onClose = () => { this.props.onClose(); } onSubmit = () => { this.props.onSuccess(); } onFinish = values => { } render() { return (
} >
); } }