Commit 5853037f authored by 吴春's avatar 吴春

提交代码

parent fc7ead44
...@@ -140,7 +140,7 @@ WHERE 1=1 and a.ExamineStatus=2 and b.ExamineStatus=2 ...@@ -140,7 +140,7 @@ WHERE 1=1 and a.ExamineStatus=2 and b.ExamineStatus=2
} }
else if (query.ExamStatus == 4) else if (query.ExamStatus == 4)
{ {
builder.AppendFormat(" AND c.{0}=1 ", nameof(RB_Examination_Publish_ViewModel.ExamStatus)); builder.AppendFormat(" AND (c.{0}=1 or c.{0}=3)", nameof(RB_Examination_Publish_ViewModel.ExamStatus));
} }
} }
} }
......
...@@ -133,7 +133,7 @@ namespace Edu.WebApi.Controllers.Applet ...@@ -133,7 +133,7 @@ namespace Edu.WebApi.Controllers.Applet
{ {
item.ExamStatusStr = "缺考"; item.ExamStatusStr = "缺考";
} }
else if (item.ExamStatus == 1) else if (item.ExamStatus == 1|| item.ExamStatus == 3)
{ {
item.ExamStatusStr = "完成"; item.ExamStatusStr = "完成";
} }
...@@ -543,7 +543,7 @@ namespace Edu.WebApi.Controllers.Applet ...@@ -543,7 +543,7 @@ namespace Edu.WebApi.Controllers.Applet
{ {
item.ExamStatusStr = "缺考"; item.ExamStatusStr = "缺考";
} }
else if (item.ExamStatus == 1) else if (item.ExamStatus == 1 || item.ExamStatus == 3)
{ {
item.ExamStatusStr = "完成"; item.ExamStatusStr = "完成";
} }
......
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