mirror of
https://github.com/PlayEdu/backend
synced 2025-12-31 01:59:37 +08:00
数据结构重构优化
This commit is contained in:
@@ -20,10 +20,10 @@ import type { CheckboxChangeEvent } from "antd/es/checkbox";
|
||||
|
||||
const SystemConfigPage = () => {
|
||||
const [form] = Form.useForm();
|
||||
const [loading, setLoading] = useState<boolean>(false);
|
||||
const [logo, setLogo] = useState<string>("");
|
||||
const [thumb, setThumb] = useState<string>("");
|
||||
const [avatar, setAvatar] = useState<string>("");
|
||||
const [loading, setLoading] = useState(false);
|
||||
const [logo, setLogo] = useState("");
|
||||
const [thumb, setThumb] = useState("");
|
||||
const [avatar, setAvatar] = useState("");
|
||||
const [tabKey, setTabKey] = useState(1);
|
||||
const [nameChecked, setNameChecked] = useState(false);
|
||||
const [emailChecked, setEmailChecked] = useState(false);
|
||||
|
||||
Reference in New Issue
Block a user