import * as React from 'react'; import { Button, } from 'kts-xui'; import { useHistory } from 'react-router-dom'; import { CloseCircleOutlined } from '@ant-design/icons'; import { Space, Modal, } from 'kts-components-antd-x4'; /** Props接口 */ interface IProps { record?: any; } /** * 没有提交规则配置弹窗面板 */ export default function Component(props) { const history = useHistory(); const [errorModal, setModal] = React.useState(false); const onClose = () => { setModal(false) } const gotoDID = () => { history.push('/task/list/setting'); } const showModal = () => { setModal(true) } return ( <> {/* */}
请先配置提交规则,再进行发票提交。