Skip to content

Commit

Permalink
fix(script): 新增超星题目类型支持:资料题
Browse files Browse the repository at this point in the history
  • Loading branch information
enncy committed Jun 22, 2023
1 parent d07bdbf commit b6d3a00
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 @@ -1484,6 +1484,7 @@ export function getValidNumber(...nums: number[]) {
* 5 名词解释
* 6 论述题
* 7 计算题
* 10 资料题
* 11 连线题
* 14 完形填空
* 15 阅读理解
Expand All @@ -1497,7 +1498,7 @@ function getQuestionType(
? 'multiple'
: val === 3
? 'judgement'
: [2, 4, 5, 6, 7].some((t) => t === val)
: [2, 4, 5, 6, 7, 10].some((t) => t === val)
? 'completion'
: val === 11
? 'line'
Expand Down

0 comments on commit b6d3a00

Please sign in to comment.