|
|
|
@ -356,6 +356,7 @@ const ExamListPage = ({ history }: { history: any }) => { |
|
|
|
|
return ( |
|
|
|
|
<div> |
|
|
|
|
<div style={{marginBottom: 16}}> |
|
|
|
|
<label>考试名称:</label> |
|
|
|
|
<Input |
|
|
|
|
placeholder="考试名称" |
|
|
|
|
value={searchForm.examName} |
|
|
|
@ -364,6 +365,7 @@ const ExamListPage = ({ history }: { history: any }) => { |
|
|
|
|
} |
|
|
|
|
style={{width: 150, marginRight: 8}} |
|
|
|
|
/> |
|
|
|
|
<label>试卷名称:</label> |
|
|
|
|
<Input |
|
|
|
|
placeholder="试卷名称" |
|
|
|
|
value={searchForm.paperName} |
|
|
|
@ -372,6 +374,7 @@ const ExamListPage = ({ history }: { history: any }) => { |
|
|
|
|
} |
|
|
|
|
style={{width: 150, marginRight: 8}} |
|
|
|
|
/> |
|
|
|
|
<label>监管行业:</label> |
|
|
|
|
<Select |
|
|
|
|
placeholder="监管行业" |
|
|
|
|
value={searchForm.regulatedIndustry} |
|
|
|
@ -387,6 +390,7 @@ const ExamListPage = ({ history }: { history: any }) => { |
|
|
|
|
</Option> |
|
|
|
|
))} |
|
|
|
|
</Select> |
|
|
|
|
<label>考试有效时间:</label> |
|
|
|
|
<DatePicker |
|
|
|
|
value={searchForm.validTime} // 使用 Moment 类型
|
|
|
|
|
onChange={(value: Moment | null) => |
|
|
|
|