李昊 4 rokov pred
rodič
commit
79a8913ac2

+ 16 - 16
gx_api/GxPress/Model/GxPress.Result/ContentJsonData.cs

@@ -148,22 +148,22 @@ namespace GxPress.Result
         /// <returns></returns>
         public int SetType(TextEditorTypeConst type)
         {
-            if (type == TextEditorTypeConst.File)
-                return OldTextEditorTypeConst.File.GetHashCode();
-            if (type == TextEditorTypeConst.Image)
-                return OldTextEditorTypeConst.Image.GetHashCode();
-            if (type == TextEditorTypeConst.Article)
-                return OldTextEditorTypeConst.Article.GetHashCode();
-            if (type == TextEditorTypeConst.Topic)
-                return OldTextEditorTypeConst.Topic.GetHashCode();
-            if (type == TextEditorTypeConst.Collect)
-                return OldTextEditorTypeConst.Collect.GetHashCode();
-            if (type == TextEditorTypeConst.Note)
-                return OldTextEditorTypeConst.Note.GetHashCode();
-            if (type == TextEditorTypeConst.Missive)
-                return OldTextEditorTypeConst.Missive.GetHashCode();
-            if (type == TextEditorTypeConst.Group)
-                return OldTextEditorTypeConst.Group.GetHashCode();
+            // if (type == TextEditorTypeConst.File)
+            //     return OldTextEditorTypeConst.File.GetHashCode();
+            // if (type == TextEditorTypeConst.Image)
+            //     return OldTextEditorTypeConst.Image.GetHashCode();
+            // if (type == TextEditorTypeConst.Article)
+            //     return OldTextEditorTypeConst.Article.GetHashCode();
+            // if (type == TextEditorTypeConst.Topic)
+            //     return OldTextEditorTypeConst.Topic.GetHashCode();
+            // if (type == TextEditorTypeConst.Collect)
+            //     return OldTextEditorTypeConst.Collect.GetHashCode();
+            // if (type == TextEditorTypeConst.Note)
+            //     return OldTextEditorTypeConst.Note.GetHashCode();
+            // if (type == TextEditorTypeConst.Missive)
+            //     return OldTextEditorTypeConst.Missive.GetHashCode();
+            // if (type == TextEditorTypeConst.Group)
+            //     return OldTextEditorTypeConst.Group.GetHashCode();
             return type.GetHashCode();
         }
         /// <summary>

+ 4 - 4
gx_api/GxPress/Service/GxPress.Service.Implement/ContentJson/ContentJsonService.cs

@@ -17,21 +17,21 @@ namespace GxPress.Service.Implement.ContentJson
                 if (data.Count > 0)
                 {
                     var first = data.First();
-                    if (first.TypeValue == OldTextEditorTypeConst.Text.GetHashCode() && !string.IsNullOrWhiteSpace(first.Text))
+                    if (first.TypeValue == AllTypeConst.Text.GetHashCode() && !string.IsNullOrWhiteSpace(first.Text))
                         title = first.Text;
                     else
                     {
                         foreach (var contentJsonData in data)
                         {
                             //是否是文本
-                            if (contentJsonData.TypeValue == OldTextEditorTypeConst.Text.GetHashCode())
+                            if (contentJsonData.TypeValue == AllTypeConst.Text.GetHashCode())
                                 continue;
-                            else if (contentJsonData.TypeValue == OldTextEditorTypeConst.Image.GetHashCode())
+                            else if (contentJsonData.TypeValue == AllTypeConst.Image.GetHashCode())
                             {
                                 title = "[图片]";
                                 break;
                             }
-                            else if (contentJsonData.TypeValue == OldTextEditorTypeConst.File.GetHashCode())
+                            else if (contentJsonData.TypeValue == AllTypeConst.File.GetHashCode())
                             {
                                 title = "[附件]";
                                 break;

+ 3 - 3
gx_api/GxPress/Service/GxPress.Service.Implement/Missive/MissiveService.cs

@@ -542,14 +542,14 @@ namespace GxPress.Service.Implement.Missive
                         foreach (var contentJsonData in data)
                         {
                             //是否是文本
-                            if (contentJsonData.TypeValue == OldTextEditorTypeConst.Text.GetHashCode())
+                            if (contentJsonData.TypeValue == AllTypeConst.Text.GetHashCode())
                                 continue;
-                            else if (contentJsonData.TypeValue == OldTextEditorTypeConst.Image.GetHashCode())
+                            else if (contentJsonData.TypeValue == AllTypeConst.Image.GetHashCode())
                             {
                                 item.Title = "[图片]";
                                 break;
                             }
-                            else if (contentJsonData.TypeValue == OldTextEditorTypeConst.File.GetHashCode())
+                            else if (contentJsonData.TypeValue == AllTypeConst.File.GetHashCode())
                             {
                                 item.Title = "[附件]";
                                 break;