lihao 4 anni fa
parent
commit
31bc43b9d4

+ 1 - 1
gx_api/GxPress/Repository/GxPress.Repository.Implement/GroupRepository.cs

@@ -224,7 +224,7 @@ namespace GxPress.Repository.Implement
                                     AND a.FolderType = {groupConst}
                                     AND a.IsDelete = 0
                                     AND (b.id > 0 OR a.AttributeValue = 2)
-                            ORDER  a.IsTop DESC , a.LastModifiedDate,a.Sort DESC
+                            ORDER  a.IsTop DESC ,a.LastModifiedDate DESC,a.Sort DESC
                             LIMIT {(request.Page - 1) * request.PerPage} , {request.PerPage}";
             var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
             var database = new Database(databaseType, _connectionString);

+ 2 - 2
gx_api/GxPress/Service/GxPress.Service.Implement/Notice/NoticeService.cs

@@ -459,9 +459,9 @@ namespace GxPress.Service.Implement.Notice
 
                 }
                 item.Title = _contentJsonService.GetTitile(item.Title, item.Content);
-                if (item.IsDelete == true)
+                if (request.SearchType == 3)
                     item.NoticeStatus = 0;
-                else if (item.NoticeAddresseeType == NoticeTypeConst.Draft)
+                else if (request.SearchType == 2)
                     item.NoticeStatus = 2;
                 else
                     item.NoticeStatus = 1;