修正试卷打印页面的分值配置和考试说明
1. 调整题型分值映射: - 判断题:2.0分 → 1.0分(10题共10分) - 多选题:2.5分 → 2.0分(10题共20分) - 论述题:4.5分 → 10.0分(2选1共10分) 2. 简化考试说明: - 去除详细的题型分数列表 - 保留关键答题提示:简答题作答要求、论述题选答规则 3. 优化论述题说明文案: - 改为"根据自己的职务,在以下2道论述题选择1道作答,共10分" - 明确说明需要根据职务类型(普通涉密人员/保密管理人员)选答 试卷总分仍为100分: - 填空题:20题×2分=40分 - 判断题:10题×1分=10分 - 单选题:10题×1分=10分 - 多选题:10题×2分=20分 - 简答题:1题×10分=10分 - 论述题:2选1×10分=10分 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
8d10ebc327
commit
023ab1cc55
@ -42,12 +42,12 @@ const TYPE_NAME: Record<string, string> = {
|
||||
// 题型分值映射
|
||||
const TYPE_SCORE: Record<string, number> = {
|
||||
'fill-in-blank': 2.0,
|
||||
'true-false': 2.0,
|
||||
'true-false': 1.0,
|
||||
'multiple-choice': 1.0,
|
||||
'multiple-selection': 2.5,
|
||||
'multiple-selection': 2.0,
|
||||
'short-answer': 0, // 不计分
|
||||
'ordinary-essay': 4.5,
|
||||
'management-essay': 4.5,
|
||||
'ordinary-essay': 10.0,
|
||||
'management-essay': 10.0,
|
||||
}
|
||||
|
||||
const ExamPrint: React.FC = () => {
|
||||
@ -448,8 +448,8 @@ const ExamPrint: React.FC = () => {
|
||||
<Title level={4}>考试说明</Title>
|
||||
<ul>
|
||||
<li>本试卷满分100分,考试时间为60分钟</li>
|
||||
<li>简答题每题8分,请在答题区域内作答,字迹清晰工整</li>
|
||||
<li>论述题每题9分,从以下2道题目中任选1道作答</li>
|
||||
<li>简答题请在答题区域内作答,字迹清晰工整</li>
|
||||
<li>论述题根据自己的职务类型从以下2道题目中选答1道</li>
|
||||
</ul>
|
||||
</Card>
|
||||
)}
|
||||
@ -467,7 +467,7 @@ const ExamPrint: React.FC = () => {
|
||||
<span className={styles.groupTitle}>
|
||||
{TYPE_NAME['ordinary-essay']}
|
||||
<span className={styles.groupScore} style={{ marginLeft: '8px' }}>
|
||||
(以下2道论述题任选1道作答,共9分)
|
||||
(根据自己的职务,在以下2道论述题选择1道作答,共10分)
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user