import { Input, Card, Select, Button, message } from "antd" import { useEffect, useState } from 'react' import { Form } from "antd"; import { history } from 'umi'; import ProCard from '@ant-design/pro-card' const { Option } = Select const goBack = () => { history.goBack() } const FormItem = Form.Item export default (props) => { const [form] = Form.useForm() const [loading, setLoading] = useState(false) const formItemLayout = { //布局 labelCol: { span: 6 }, wrapperCol: { span: 14 }, }; const Submit = values => { setLoading(false) console.log("🚀 ~ file: index.jsx ~ line 21 ~ values", values) }; return (
) }