From 4134283ed213d2d761bc3a864b7e54d1ad10989a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Mon, 19 Feb 2024 16:49:48 +0800 Subject: [PATCH] fix 81846 --- src/pages/page1/saicComponents/Init.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/page1/saicComponents/Init.vue b/src/pages/page1/saicComponents/Init.vue index 3dd1a8c..c3c9fe5 100644 --- a/src/pages/page1/saicComponents/Init.vue +++ b/src/pages/page1/saicComponents/Init.vue @@ -2169,6 +2169,7 @@ export default { const oDrawing = Api.CreateShape('rect', 6110900, 9000, oFill, oStroke) oDrawing.SetWrappingStyle('inline') oParagraphLine.AddDrawing(oDrawing) + oParagraphLine.SetSpacingLine(240, 'auto') oDrawing.SetDistances(0, 541, 0, 0) oParagraphStandardName.InsertParagraph(oParagraphLine, 'after') @@ -2176,7 +2177,7 @@ export default { const oParagraphBox = Api.CreateParagraph() oParagraphBox.SetSpacingBefore(400) const oStrokeBox = Api.CreateStroke(0, Api.CreateSolidFill(Api.CreateRGBColor(255, 0, 13))) - const oDrawingBox = Api.CreateShape('rect', 6110900, 6130900, null, oStrokeBox) + const oDrawingBox = Api.CreateShape('rect', 6110900, 6110900, null, oStrokeBox) oDrawingBox.SetVerticalTextAlign('top') oParagraphBox.AddDrawing(oDrawingBox) oParagraphLine.InsertParagraph(oParagraphBox, 'after')