diff --git a/playground/src/views/question-bank/paper-mgr/index.ts b/playground/src/views/question-bank/paper-mgr/index.ts index 98fd383..8017266 100644 --- a/playground/src/views/question-bank/paper-mgr/index.ts +++ b/playground/src/views/question-bank/paper-mgr/index.ts @@ -45,6 +45,7 @@ const type_hw = 6 const type_semester_hw = 7 const type_semester_test = 8 const type_final_test = 9 +const type_quiz_test = 10 export const type_options = [ { label: '单元测试', @@ -82,6 +83,10 @@ export const type_options = [ label: '期末测试', value: type_final_test, }, + { + label: '小测', + value: type_quiz_test, + }, ] export const type_map = obj.options2map(type_options) export type PaperQuestion = {