import React from 'react' import { Button } from 'antd' export default function editSix(props: any) { const height = window.innerHeight - 350; const handleSubmit = () => { // console.log(form); // 调用表单实例的 submit 方法 // form.submit(); alert('提交成功') }; return (
) }