Commit a310383b authored by 黄奎's avatar 黄奎

页面修改

parent 84304040
......@@ -61,5 +61,10 @@ namespace Edu.Common.Enum.Course
[EnumField("阅读选择")]
ReadingChoose = 8,
/// <summary>
/// 听力
/// </summary>
[EnumField("听力")]
Listening = 9,
}
}
\ No newline at end of file
......@@ -550,15 +550,57 @@ namespace Edu.Module.Exam
IsMutex = qItem.IsMutex,
Category = qItem.Category,
LevelType = qItem.LevelType,
Score = item.QuestionScore / subTempQuestionList.Count()
};
detailsModel.Score = item.QuestionScore / subTempQuestionList.Count();
//听力题、完型填空、阅读理解
if (qItem.QuestionTypeKey == "cloze")
{
List<colzeItem> clozeList = JsonHelper.DeserializeObject<List<colzeItem>>(qItem.QuestionContent);
decimal tempCScore = 0;
int cIndex = 0;
var sScore = Math.Floor(detailsModel.Score / clozeList.Count * 100) / 100;
foreach (var cItem in clozeList)
{
if (cIndex != clozeList.Count - 1)
{
tempCScore += sScore;
cItem.SubScore = sScore;
}
else
{
cItem.SubScore = detailsModel.Score - tempCScore;
}
cIndex++;
}
detailsModel.QuestionContent = JsonHelper.Serialize(clozeList);
}
else if (qItem.QuestionTypeKey == "listening" || qItem.QuestionTypeKey == "reading-comprehensio")
{
List<readingComprehensioItem> readingList = JsonHelper.DeserializeObject<List<readingComprehensioItem>>(qItem.QuestionContent);
decimal tempRScore = 0;
int rIndex = 0;
var rScore = Math.Floor(detailsModel.Score / readingList.Count * 100) / 100;
foreach (var rItem in readingList)
{
if (rIndex != readingList.Count - 1)
{
tempRScore += rScore;
rItem.SubScore = rScore;
}
else
{
rItem.SubScore = detailsModel.Score - tempRScore;
}
rIndex++;
}
detailsModel.QuestionContent = JsonHelper.Serialize(readingList);
}
string msg = analysisQuestion.CheckQuestion(detailsModel.QuestionTypeKey, detailsModel.QuestionContent, detailsModel.Answer, out string newAnswer, IsRequire: false);
if (!string.IsNullOrEmpty(newAnswer))
{
detailsModel.Answer = newAnswer;
}
Q_SortNum++;
var newDetailsId = examination_DetailsRepository.Insert(detailsModel);
detailsModel.Id = newDetailsId;
flag = newDetailsId > 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment