|
@@ -96,7 +96,6 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
/// <summary>
|
|
|
/// 团组信息List 团组预览详情共享Api
|
|
|
/// </summary>
|
|
@@ -502,6 +501,16 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
if (teamTypeData.Any())
|
|
|
{
|
|
|
teamTypeData1 = teamTypeData;
|
|
|
+
|
|
|
+ if (teamTypeData.Any(x => x.Name.Equals("前期沟通")))
|
|
|
+ {
|
|
|
+ var info = teamTypeData.Find(x => x.Name.Equals("前期沟通"));
|
|
|
+ if (info != null)
|
|
|
+ {
|
|
|
+ teamTypeData.Remove(info);
|
|
|
+ teamTypeData.Insert(2, info);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
dynamic? teamLevData1 = null;
|
|
@@ -557,7 +566,6 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
};
|
|
|
}
|
|
|
|
|
|
-
|
|
|
return result;
|
|
|
}
|
|
|
|