Commit 9788b645 authored by 吴春's avatar 吴春

1

parent 2005d44f
...@@ -1387,7 +1387,7 @@ namespace Edu.WebApi.Controllers.Course ...@@ -1387,7 +1387,7 @@ namespace Edu.WebApi.Controllers.Course
foreach (var item in list) foreach (var item in list)
{ {
JObject jobj = JObject.Parse(Common.Plugin.JsonHelper.Serialize(item)); JObject jobj = JObject.Parse(Common.Plugin.JsonHelper.Serialize(item));
firstRow.ExcelRows.Add(new ExcelColumn(value: jobj.GetStringValue("CourseName")) { CellWidth = 15 }); firstRow.ExcelRows.Add(new ExcelColumn(value: jobj.GetStringValue("CourseName")) { CellWidth = 30 });
} }
slist.Add(firstRow); slist.Add(firstRow);
...@@ -1434,7 +1434,8 @@ namespace Edu.WebApi.Controllers.Course ...@@ -1434,7 +1434,8 @@ namespace Edu.WebApi.Controllers.Course
int State = sObj.GetInt("State"); int State = sObj.GetInt("State");
if (State == 1) if (State == 1)
{ {
str = chapterName;
str = "【已上课】\r\n" + chapterName;
dataRow.ExcelRows.Add(new ExcelColumn(value: str) { FontColorEnum = ColorEnum.DarkBlue }); dataRow.ExcelRows.Add(new ExcelColumn(value: str) { FontColorEnum = ColorEnum.DarkBlue });
} }
else if (State == 2) else if (State == 2)
...@@ -1449,7 +1450,7 @@ namespace Edu.WebApi.Controllers.Course ...@@ -1449,7 +1450,7 @@ namespace Edu.WebApi.Controllers.Course
} }
else else
{ {
str = chapterName; str = "【待上课】\r\n" + chapterName;
dataRow.ExcelRows.Add(new ExcelColumn(value: str)); dataRow.ExcelRows.Add(new ExcelColumn(value: str));
} }
} }
......
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