Commit 4e0cdb1c authored by 黄奎's avatar 黄奎

页面修改

parent d10ca602
...@@ -405,7 +405,15 @@ namespace Edu.Module.User ...@@ -405,7 +405,15 @@ namespace Edu.Module.User
object subObj = new object(); object subObj = new object();
if (string.IsNullOrEmpty(DateStr)) if (string.IsNullOrEmpty(DateStr))
{ {
DateStr = "总数"; if (index == 0)
{
DateStr = "上期总数";
}
else
{
DateStr = "总数";
}
if (index > 0) if (index > 0)
{ {
decimal PushCount = 0; decimal PushCount = 0;
...@@ -640,7 +648,7 @@ namespace Edu.Module.User ...@@ -640,7 +648,7 @@ namespace Edu.Module.User
item.OrderMoney, item.OrderMoney,
item.StudyOrderMoney, item.StudyOrderMoney,
}); });
if (DateStr.Equals("总数") && index > 1) if (DateStr.Contains("总数") && index > 1)
{ {
dataList.Add(subObj); dataList.Add(subObj);
} }
......
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