+ {/* 检索条件行 */}
+
+
+ 试卷名称:
+ setPaperName(e.target.value)}
+ style={{ width: 'calc(100% - 100px)' }}
+ />
+
+
+ 监管行业:
+
+
+
+
+
+
+
+
+
+ {/* 试卷数量行 */}
+
+
+
+ 总计
+ {totalCount}
+ 套
+
+
+
+
+ 已使用
+ {usedCount}
+ 套
+
+
+
+
+ 停用
+ {disabledCount}
+ 套
+
+
+
+ {/* 表格 */}
+
+
+ );
+};
+
+export default ExamPaperAnalysisPage;
\ No newline at end of file
diff --git a/packages/examination/src/views/exam-online/exam-detail-analysis.tsx b/packages/examination/src/views/exam-online/exam-detail-analysis.tsx
index fffff8b..f31d04c 100644
--- a/packages/examination/src/views/exam-online/exam-detail-analysis.tsx
+++ b/packages/examination/src/views/exam-online/exam-detail-analysis.tsx
@@ -1,5 +1,6 @@
import React, { Component } from "react";
import ExamEditPage from "./compoents/ExamEditPage";
+import ExamDetailAnalysisPage from "./compoents/ExamDetailAnalysisPage";
interface States {
resData: any
visible: boolean
@@ -25,7 +26,7 @@ class ExamDetailAnalysis extends Component