From 43140b106f20f238703512fae6cd05ab0dee487c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Wed, 7 Feb 2024 09:41:51 +0800 Subject: [PATCH] fix 81846 --- src/pages/page1/saicComponents/Init.vue | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/pages/page1/saicComponents/Init.vue b/src/pages/page1/saicComponents/Init.vue index 58fcf74..3dd1a8c 100644 --- a/src/pages/page1/saicComponents/Init.vue +++ b/src/pages/page1/saicComponents/Init.vue @@ -2139,16 +2139,16 @@ export default { oParagraphSubTitle.InsertParagraph(oParagraphLargeTitle, 'after') // 计划编号 - const oParagraphPlanNum = Api.CreateParagraph() - oParagraphPlanNum.AddText('计划编号:') - oParagraphPlanNum.SetFontFamily('宋体') - oParagraphPlanNum.SetFontSize(21) - oParagraphPlanNum.SetJc('left') - oParagraphPlanNum.SetSpacingAfter(0) - oParagraphPlanNum.SetSpacingBefore(0) - oParagraphPlanNum.SetColor(0, 0, 0) - oParagraphPlanNum.SetSpacingLine(1.5 * 240, 'auto') - oParagraphLargeTitle.InsertParagraph(oParagraphPlanNum, 'after') + // const oParagraphPlanNum = Api.CreateParagraph() + // oParagraphPlanNum.AddText('计划编号:') + // oParagraphPlanNum.SetFontFamily('宋体') + // oParagraphPlanNum.SetFontSize(21) + // oParagraphPlanNum.SetJc('left') + // oParagraphPlanNum.SetSpacingAfter(0) + // oParagraphPlanNum.SetSpacingBefore(0) + // oParagraphPlanNum.SetColor(0, 0, 0) + // oParagraphPlanNum.SetSpacingLine(1.5 * 240, 'auto') + // oParagraphLargeTitle.InsertParagraph(oParagraphPlanNum, 'after') // 标准名称 const oParagraphStandardName = Api.CreateParagraph() @@ -2160,7 +2160,7 @@ export default { oParagraphStandardName.SetSpacingBefore(0) oParagraphStandardName.SetColor(0, 0, 0) oParagraphStandardName.SetSpacingLine(1.5 * 240, 'auto') - oParagraphPlanNum.InsertParagraph(oParagraphStandardName, 'after') + oParagraphLargeTitle.InsertParagraph(oParagraphStandardName, 'after') // 横线 const oParagraphLine = Api.CreateParagraph() @@ -2176,7 +2176,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, 6120900, null, oStrokeBox) + const oDrawingBox = Api.CreateShape('rect', 6110900, 6130900, null, oStrokeBox) oDrawingBox.SetVerticalTextAlign('top') oParagraphBox.AddDrawing(oDrawingBox) oParagraphLine.InsertParagraph(oParagraphBox, 'after')