dev_forum
SylorHuang 5 years ago
parent 4e33c98190
commit ed10b2c981

@ -21,7 +21,7 @@ if question.question_type <= 2 #当为选择题或判断题时,只显示选
user_answer_b = user_answer.include?(a.id) user_answer_b = user_answer.include?(a.id)
json.c_position (index+1) if ex_choice_random_boolean #当选项随机时,选项位置以此为准,否则不出现 json.c_position (index+1) if ex_choice_random_boolean #当选项随机时,选项位置以此为准,否则不出现
json.choice_id a.id json.choice_id a.id
json.choice_text "#{(index+65).chr}.#{a.choice_text}" json.choice_text (edit_type.present? ? a.choice_text : "#{(index+65).chr}.#{a.choice_text}")
json.choice_position a.choice_position json.choice_position a.choice_position
if exercise_type == 1 || exercise_type == 4 #1为教师编辑/预览 试卷或问题2为空白试卷即标准答案和用户答案都不显示3为用户开始答题的显示4为老师评阅试卷或学生在截止后查看试卷 if exercise_type == 1 || exercise_type == 4 #1为教师编辑/预览 试卷或问题2为空白试卷即标准答案和用户答案都不显示3为用户开始答题的显示4为老师评阅试卷或学生在截止后查看试卷
json.standard_boolean standard_answer_b json.standard_boolean standard_answer_b

@ -16,7 +16,8 @@ json.exercise_questions do
exercise_type:1, exercise_type:1,
user_answer:[], user_answer:[],
shixun_type:0, shixun_type:0,
ques_position:nil ques_position:nil,
edit_type:true
end end
end end

Loading…
Cancel
Save