修正试卷打印页面的分值配置和考试说明

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:
燕陇琪 2025-12-01 23:17:30 +08:00
parent 8d10ebc327
commit 023ab1cc55

View File

@ -42,12 +42,12 @@ const TYPE_NAME: Record<string, string> = {
// 题型分值映射 // 题型分值映射
const TYPE_SCORE: Record<string, number> = { const TYPE_SCORE: Record<string, number> = {
'fill-in-blank': 2.0, 'fill-in-blank': 2.0,
'true-false': 2.0, 'true-false': 1.0,
'multiple-choice': 1.0, 'multiple-choice': 1.0,
'multiple-selection': 2.5, 'multiple-selection': 2.0,
'short-answer': 0, // 不计分 'short-answer': 0, // 不计分
'ordinary-essay': 4.5, 'ordinary-essay': 10.0,
'management-essay': 4.5, 'management-essay': 10.0,
} }
const ExamPrint: React.FC = () => { const ExamPrint: React.FC = () => {
@ -448,8 +448,8 @@ const ExamPrint: React.FC = () => {
<Title level={4}></Title> <Title level={4}></Title>
<ul> <ul>
<li>10060</li> <li>10060</li>
<li>8</li> <li></li>
<li>921</li> <li>21</li>
</ul> </ul>
</Card> </Card>
)} )}
@ -467,7 +467,7 @@ const ExamPrint: React.FC = () => {
<span className={styles.groupTitle}> <span className={styles.groupTitle}>
{TYPE_NAME['ordinary-essay']} {TYPE_NAME['ordinary-essay']}
<span className={styles.groupScore} style={{ marginLeft: '8px' }}> <span className={styles.groupScore} style={{ marginLeft: '8px' }}>
219 2110
</span> </span>
</span> </span>
</div> </div>