+
+ {paperName}
+
+
+
+ {this.findIndustryName(industryId)}
+
+
+ {questionCount}
+
+
+ {totalScore}
+
+
+ {examDuration}
+
+
+ {this.findDurationTypeName(durationType)}
+
+
+
+ {paperContent}
+
+
+
试题详情
+
+ {questions.map((question, index) => (
+
+ {index + 1}. {question.questionContent}
+
+ {question.questionTypes === '1'? (
+
+ {question.answerOptions.map((option) => (
+
+ {option.value}. {option.label}
+
+ ))}
+
+ ) : (
+
+ {question.answerOptions.map((option) => (
+
+ {option.value}. {option.label}
+
+ ))}
+
+ )}
+
+
+ ))}
+
+
+
+
+
+ );
+ }
+}
+export default ExamPaperView;
\ No newline at end of file