Commit fe42b560 authored by 吴春's avatar 吴春

提交代码

parent 78861d99
......@@ -71,7 +71,7 @@ namespace Edu.WebApi.Controllers.Exam
item.ChildList,
item.ReviewerName,
item.Reviewer,
ExamineStatusStr=EnumHelper.ToName(item.ExamineStatus)
ExamineStatusStr = item.PaperType == 2 ? EnumHelper.ToName(item.ExamineStatus) : ""
});
}
pageModel.Count = rowsCount;
......@@ -519,6 +519,9 @@ namespace Edu.WebApi.Controllers.Exam
EndTime = Common.ConvertHelper.FormatTime(item.ExamEndTime),
item.ExamTimes,
item.StudentCount,
ReviewerName = item.Reviewer > 0 ? (UserReidsCache.GetUserLoginInfo(item.Reviewer)?.AccountName ?? "") : "",
item.Reviewer,
ExamineStatusStr = EnumHelper.ToName(item.ExamineStatus)
};
result.Add(obj);
}
......
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