talkPicture.js 831 B

12345678910111213141516171819202122232425
  1. import { stemTypeList, scoreTypeList, questionNumberTypeList } from './common';
  2. // 看图说话数据模板
  3. export const talkPictrueData = {
  4. type: 'talk_picture', // 题型
  5. stem: '', // 题干
  6. reference_answer: '', // 参考答案
  7. description: '', // 描述
  8. option_list: '', // 选项
  9. answer: { score: 0, score_type: scoreTypeList[0].value }, // 答案
  10. // 题型属性
  11. property: {
  12. stem_type: stemTypeList[0].value, // 题干类型
  13. question_number: 1, // 题号
  14. score: 1, // 分值
  15. is_enable_description: false, // 描述
  16. is_enable_voice_answer: true, // 语音作答
  17. is_enable_reference_answer: true, // 参考答案
  18. score_type: scoreTypeList[0].value, // 分值类型
  19. },
  20. // 其他属性
  21. other: {
  22. question_number_type: questionNumberTypeList[0].value, // 题号类型
  23. },
  24. };