李昊 4 years ago
parent
commit
f33aec4b66

+ 3 - 1
gx_api/GxPress/Model/GxPress.EnumConst/AllTypeConst.cs

@@ -7,6 +7,8 @@ namespace GxPress.EnumConst
     /// </summary>
     public enum AllTypeConst
     {
+         [Description("文本")]
+        Text = 1,
         [Description("文章")]
         Article = 100,
         [Description("话题")]
@@ -38,7 +40,7 @@ namespace GxPress.EnumConst
         [Description("文件")]
         File = 300,
         [Description("图片")]
-        Image = 2,
+        Image = 301,
         [Description("会议纪要")]
         MeetingSummary = 8,
         [Description("会议详情")]

+ 4 - 4
gx_api/GxPress/Service/GxPress.Service.Implement/Topic/TopicService.cs

@@ -128,16 +128,16 @@ namespace GxPress.Service.Implement.Topic
                     var firstContent = string.Empty;
                     foreach (var jsonData in contentJsonData)
                     {
-                        if (jsonData.Type == OldTextEditorTypeConst.Text.GetHashCode() && forCount == 1)
+                        if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount == 1)
                             //文本
                             firstContent = jsonData.Text;
-                        else if (jsonData.Type == OldTextEditorTypeConst.Text.GetHashCode() && forCount > 1)
+                        else if (jsonData.Type == AllTypeConst.Text.GetHashCode() && forCount > 1)
                             //文本
                             continue;
                         //图片
-                        else if (jsonData.Type == OldTextEditorTypeConst.Image.GetHashCode() && FileData.Count == 0)
+                        else if (jsonData.Type == AllTypeConst.Image.GetHashCode() && FileData.Count == 0)
                         {
-                            if (imgData.Count > 9)
+                            if (imgData.Count >= 9)
                                 break;
                             imgData.Add(jsonData);
                         }