import { MyBetaModalFormProps, MyButtons, MyModalFormProps, rulesHelper, } from '@/common'; import { Apis } from '@/gen/Apis'; import { BetaSchemaForm } from '@ant-design/pro-components'; import { message } from 'antd'; export default function Create(props: MyBetaModalFormProps) { return ( {...MyModalFormProps.props} title={`添加${props.title}`} wrapperCol={{ span: 24 }} width="500px" trigger={} onFinish={async (values) => Apis.Factories.Store(values) .then(() => { props.reload?.(); message.success(props.title + '成功'); return true; }) .catch(() => false) } columns={[ { key: 'name', title: '厂家名称', formItemProps: { ...rulesHelper.text }, }, { key: 'public_key', title: '下游公钥', valueType: 'textarea', formItemProps: { ...rulesHelper.text }, }, ]} /> ); }