diff --git a/src/pages/Create/components/PublishForm/index.scss b/src/pages/Create/components/PublishForm/index.scss
index da8345e..9bd5a8b 100644
--- a/src/pages/Create/components/PublishForm/index.scss
+++ b/src/pages/Create/components/PublishForm/index.scss
@@ -1,3 +1,3 @@
-.ant-drawer-content-wrapper {
- width: 50% !important;
-}
\ No newline at end of file
+// .ant-drawer-content-wrapper {
+// width: 50% !important;
+// }
\ No newline at end of file
diff --git a/src/pages/Create/components/PublishForm/index.tsx b/src/pages/Create/components/PublishForm/index.tsx
index 01d849f..e4b3d4f 100644
--- a/src/pages/Create/components/PublishForm/index.tsx
+++ b/src/pages/Create/components/PublishForm/index.tsx
@@ -1,9 +1,82 @@
+import { Form, Input, Button, Select, DatePicker, SelectProps } from "antd";
import "./index.scss"
+import TextArea from "antd/es/input/TextArea";
const PublishForm = () => {
+ const options: SelectProps['options'] = [];
+
+ for (let i = 10; i < 36; i++) {
+ options.push({
+ label: i.toString(36) + i,
+ value: i.toString(36) + i,
+ });
+ }
+
+ const onSubmit = () => {
+
+ }
+
return (
<>
-
Hello World!
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
>
);
};
diff --git a/src/pages/Create/index.tsx b/src/pages/Create/index.tsx
index 6b5c10a..3c6ad8b 100644
--- a/src/pages/Create/index.tsx
+++ b/src/pages/Create/index.tsx
@@ -39,6 +39,7 @@ const CreatePage = () => {
setPublishOpen(false)}
open={publishOpen}
diff --git a/src/pages/Setup/components/My/index.tsx b/src/pages/Setup/components/My/index.tsx
index 8ed68d9..20a51ac 100644
--- a/src/pages/Setup/components/My/index.tsx
+++ b/src/pages/Setup/components/My/index.tsx
@@ -32,7 +32,7 @@ const UserPage = () => {
setLoading(false)
await editUserDataAPI({ id: store.user.id, ...values });
message.success("🎉 修改用户信息成功");
- store.setUser(values as User); // 假设你有一个setUser方法
+ store.setUser(values as User);
getUserData();
};
diff --git a/src/pages/Setup/components/Web/index.tsx b/src/pages/Setup/components/Web/index.tsx
index f254646..b9d392d 100644
--- a/src/pages/Setup/components/Web/index.tsx
+++ b/src/pages/Setup/components/Web/index.tsx
@@ -39,7 +39,7 @@ const WebPage = () => {
layout="vertical"
onFinish={onSubmit}
initialValues={web}
- className="w-5/12 mx-auto"
+ className="w-6/12 mx-auto"
>