Procházet zdrojové kódy

在组名列表中添加“全部”选项

在 `DelegationInfoRepository.cs` 文件中,向 `_groupNameList` 的开头插入了一个新的 `GroupNameView` 对象,`Id` 为 0,`GroupName` 为 "未选择"。此更改为用户提供了一个表示所有组的集合的选项。
LEIYI před 1 týdnem
rodič
revize
ac7bf9af25

+ 1 - 1
OASystem/OASystem.Infrastructure/Repositories/Groups/DelegationInfoRepository.cs

@@ -1150,7 +1150,7 @@ namespace OASystem.Infrastructure.Repositories.Groups
                         var info = _groupNameList[i];
                         _groupNameList[i].GroupName = FormartTeamName(info.GroupName);
                     }
-
+                    _groupNameList.Insert(0, new GroupNameView() { Id = 0, GroupName = "未选择" });
                     view.Code = StatusCodes.Status200OK;
                     view.Msg = "成功!";
                     view.Data = _groupNameList;