Skip to content

Commit

Permalink
fix(script): 新增超星其他题,类型支持
Browse files Browse the repository at this point in the history
  • Loading branch information
enncy committed Oct 30, 2023
1 parent f703288 commit ee2cf4d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/scripts/src/projects/cx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1536,6 +1536,7 @@ export function getValidNumber(...nums: number[]) {
* 5 名词解释
* 6 论述题
* 7 计算题
* 8 其他题(大概率是填空题)
* 9 分录题
* 10 资料题
* 11 连线题
Expand All @@ -1551,7 +1552,7 @@ function getQuestionType(
? 'multiple'
: val === 3
? 'judgement'
: [2, 4, 5, 6, 7, 9, 10].some((t) => t === val)
: [2, 4, 5, 6, 7, 8, 9, 10].some((t) => t === val)
? 'completion'
: val === 11
? 'line'
Expand Down

0 comments on commit ee2cf4d

Please sign in to comment.