answerQuestion.js 673 B

1234567891011121314151617181920212223
  1. import { questionNumberTypeList, scoreTypeList, switchOption } from './common';
  2. // 口语表达数据模板
  3. export const answerQuestionData = {
  4. type: 'answer_question', // 题型
  5. stem: '', // 题干
  6. reference_answer: '', // 参考答案
  7. answer: {
  8. score: 1,
  9. score_type: scoreTypeList[0].value,
  10. }, // 答案
  11. // 题型属性
  12. property: {
  13. question_number: '1', // 题号
  14. is_enable_reference_answer: switchOption[0].value, // 是否开启参考答案
  15. score: 1, // 分值
  16. score_type: scoreTypeList[0].value, // 分值类型
  17. },
  18. // 其他属性
  19. other: {
  20. question_number_type: questionNumberTypeList[0].value, // 题号类型
  21. },
  22. };