diff --git a/src/military/expert/adminRouter.js b/src/military/expert/adminRouter.js index 5c7b3011..4ecf08f1 100644 --- a/src/military/expert/adminRouter.js +++ b/src/military/expert/adminRouter.js @@ -15,7 +15,21 @@ const RegisterList = Loadable({ loader: () => import("./registerList"), loading: Loading, }); - +//创客任务评审规则 +const ReviewRules = Loadable({ + loader : () => import("./reviewRules"), + loading: Loading, +}); +//创客任务选择评审专家 +const SelectExpert = Loadable({ + loader: () => import("./selectExpert"), + loading: Loading, +}); +//创客任务评审结果查看 +const ReviewResult = Loadable({ + loader: () => import("./reviewResult"), + loading: Loading, +}); const AdminPage = (propsF) => { @@ -37,7 +51,27 @@ const AdminPage = (propsF) => { )} > - + {/* 创客任务评审规则 */} + ( + + )} + > + {/* 创客任务选择评审专家 */} + ( + + )} + > + {/* 创客任务评审结果查看 */} + ( + + )} + > ); diff --git a/src/military/expert/components/wordsInput.jsx b/src/military/expert/components/wordsInput.jsx new file mode 100644 index 00000000..119d6a21 --- /dev/null +++ b/src/military/expert/components/wordsInput.jsx @@ -0,0 +1,16 @@ +import React, { useState } from "react"; +import { Input } from 'antd'; + +const { TextArea } = Input; + +//右下角 实时动态 显示用户输入字数 +function WordsInput(props){ + const [wordCount, setWordCount] = useState(0); + return( +
+