Commit 8ccbea51 authored by 黄奎's avatar 黄奎

页面修改

parent feb44e65
......@@ -48,6 +48,7 @@ WHERE 1=1
builder.AppendFormat(" AND A.{0}={1} ", nameof(RB_Examination_Publish_ViewModel.CreateBy), query.CreateBy);
}
}
builder.AppendFormat(" ORDER BY A.{0} DESC ", nameof(RB_Examination_Publish_ViewModel.Id));
return GetPage<RB_Examination_Publish_ViewModel>(pageIndex, pageSize, out rowsCount, builder.ToString()).ToList();
}
......
......@@ -93,7 +93,7 @@ namespace Edu.WebApi.Controllers.Exam
item.ReviewerName,
item.Reviewer,
item.IsOpen,
OpenStr = item.IsOpen == 1 ? "私有" : "公开",
OpenStr = item.PaperType == 2 ? (item.IsOpen == 1 ? "私有" : "公开") : "",
item.ExamineStatus,
ExamineStatusStr = item.PaperType == 2 ? (paperModule.GetExamineStatusStr(item.ExamineStatus)) : "",
item.ExamineRemark,
......
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