yuanrf 2 주 전
부모
커밋
ec36093771
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      OASystem/OASystem.Api/OAMethodLib/MarkDown/JsonToWordHelper.cs

+ 2 - 2
OASystem/OASystem.Api/OAMethodLib/MarkDown/JsonToWordHelper.cs

@@ -30,7 +30,7 @@ public static class JsonToWordHelper
         builder.ParagraphFormat.ClearFormatting();
         builder.ParagraphFormat.Alignment = ParagraphAlignment.Center;
         builder.Font.Bold = true;
-        builder.Font.Size = 16;
+        builder.Font.Size = 24;
         builder.Writeln(model.Title ?? string.Empty);
 
         builder.InsertParagraph();
@@ -186,7 +186,7 @@ public static class JsonToWordHelper
 
     private static void SetDefaultFont(DocumentBuilder builder)
     {
-        builder.Font.Name = "宋体";
+        builder.Font.Name = "仿宋_GB2312";
         builder.Font.Size = 12;
     }
 }