formConfig.tsx 576 B

123456789101112131415161718192021222324
  1. import { ProFormColumnsType } from "@ant-design/pro-components";
  2. function formConfig(props?: { }): ProFormColumnsType<{
  3. name: string;
  4. state: string;
  5. }>[] {
  6. return [
  7. {
  8. title: '链接名称',
  9. dataIndex: 'linkName',
  10. formItemProps: {
  11. style: { marginBottom: 10 },
  12. rules: [
  13. {
  14. required: true,
  15. message: '此项为必填项',
  16. },
  17. ],
  18. },
  19. },
  20. ]
  21. }
  22. export default formConfig