diff --git a/src/pages/list/search/projects/index.tsx b/src/pages/list/search/projects/index.tsx
index 2edec8ca..70400a33 100644
--- a/src/pages/list/search/projects/index.tsx
+++ b/src/pages/list/search/projects/index.tsx
@@ -9,10 +9,15 @@ import TagSelect from './components/TagSelect';
import type { ListItemDataType } from './data.d';
import { queryFakeList } from './service';
import useStyles from './style.style';
+import { DefaultOptionType } from 'antd/es/select';
dayjs.extend(relativeTime);
-const { Option } = Select;
+const categoryOptions: DefaultOptionType[] = Array.from({length: 12}).map((_, index) => ({
+ value: `cat${index + 1}`,
+ label: `类目${index + 1}`,
+}));
+
const FormItem = Form.Item;
const { Paragraph } = Typography;
const getKey = (id: string, index: number) => `${id}-${index}`;
@@ -103,18 +108,9 @@ const Projects: FC = () => {
>