From 235bb7885338ede4a97d62579630410c06051740 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=9C=84?= Date: Tue, 5 Sep 2023 11:23:26 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E8=8C=83=E5=9B=B4=E6=96=87=E6=9C=AC?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/page1/saicComponents/Init.vue | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/pages/page1/saicComponents/Init.vue b/src/pages/page1/saicComponents/Init.vue index 70662a1..b66ae4a 100644 --- a/src/pages/page1/saicComponents/Init.vue +++ b/src/pages/page1/saicComponents/Init.vue @@ -1158,7 +1158,7 @@ export default { oDocument.InsertContent([oParagraph]) const oParagraph1 = Api.CreateParagraph() - oParagraph1.AddText(' 本文件XXX') + oParagraph1.AddText(' 本文件规定了……(标准化对象和所涉及的各个方面) 。') oParagraph1.SetFontFamily('宋体') oParagraph1.SetFontSize(21) oParagraph1.SetJc('left') @@ -1167,6 +1167,16 @@ export default { oParagraph1.SetColor(0, 0, 0) oDocument.InsertContent([oParagraph1]) + const oParagraphA = Api.CreateParagraph() + oParagraphA.AddText(' 本文件适用于……(指明标准化或其特定部分的适用界限)。') + oParagraphA.SetFontFamily('宋体') + oParagraphA.SetFontSize(21) + oParagraphA.SetJc('left') + oParagraphA.SetSpacingAfter(0) + oParagraphA.SetSpacingBefore(17) + oParagraphA.SetColor(0, 0, 0) + oDocument.InsertContent([oParagraphA]) + const oParagraph4 = Api.CreateParagraph() oParagraph4.AddText('规范性引用文件') oParagraph4.SetNumbering(oNumLvl)