提交 f125f614 authored 作者: 孙洁清's avatar 孙洁清

解决内存溢出

上级 b21ea02e
...@@ -33,7 +33,7 @@ import java.util.regex.Matcher; ...@@ -33,7 +33,7 @@ import java.util.regex.Matcher;
* FreeMakerUtils.writeFile("E:/doc/text.doc",document); * FreeMakerUtils.writeFile("E:/doc/text.doc",document);
*/ */
public class DocumentWordUtil { public class DocumentWordUtil {
public static String Maintitle(){ public String Maintitle(){
return "<w:p>\n" + return "<w:p>\n" +
" <w:pPr>\n" + " <w:pPr>\n" +
" <w:pStyle w:val=\"2\"/>\n" + " <w:pStyle w:val=\"2\"/>\n" +
...@@ -53,7 +53,7 @@ public class DocumentWordUtil { ...@@ -53,7 +53,7 @@ public class DocumentWordUtil {
" </w:p>"; " </w:p>";
} }
public static String subheading(DocumentTitleEnum documentTitleEnum){ public String subheading(DocumentTitleEnum documentTitleEnum){
return "<w:p>\n" + return "<w:p>\n" +
" <w:pPr>\n" + " <w:pPr>\n" +
...@@ -97,7 +97,7 @@ public class DocumentWordUtil { ...@@ -97,7 +97,7 @@ public class DocumentWordUtil {
} }
public static String getTableString(List<TechnologyContent> tables, String technologyName, String stra){ public String getTableString(List<TechnologyContent> tables, String technologyName, String stra){
//key 表格标题,value 内容 //key 表格标题,value 内容
String s3 = tableTile(technologyName, stra); String s3 = tableTile(technologyName, stra);
String s4 = Matcher.quoteReplacement(s3); String s4 = Matcher.quoteReplacement(s3);
...@@ -112,14 +112,14 @@ public class DocumentWordUtil { ...@@ -112,14 +112,14 @@ public class DocumentWordUtil {
return sb.toString(); return sb.toString();
} }
public static String gettb(TechnologyContent technologyContent){ public String gettb(TechnologyContent technologyContent){
StringBuilder sb=new StringBuilder(); StringBuilder sb=new StringBuilder();
String biaoge = biaoge(technologyContent); String biaoge = biaoge(technologyContent);
sb.append(biaoge); sb.append(biaoge);
return sb.toString(); return sb.toString();
} }
public static String tabtb(){ public String tabtb(){
return "<w:tc>\n" + return "<w:tc>\n" +
" <w:tcPr>\n" + " <w:tcPr>\n" +
" <w:tcW w:w=\"#colW#\" w:type=\"dxa\"/>\n" + " <w:tcW w:w=\"#colW#\" w:type=\"dxa\"/>\n" +
...@@ -146,7 +146,7 @@ public class DocumentWordUtil { ...@@ -146,7 +146,7 @@ public class DocumentWordUtil {
" </w:p>\n" + " </w:p>\n" +
" </w:tc>"; " </w:tc>";
} }
public static String tabtr(){ public String tabtr(){
return "<w:tc>\n" + return "<w:tc>\n" +
" <w:tcPr>\n" + " <w:tcPr>\n" +
" <w:tcW w:w=\"#colW#\" w:type=\"dxa\"/>\n" + " <w:tcW w:w=\"#colW#\" w:type=\"dxa\"/>\n" +
...@@ -175,7 +175,7 @@ public class DocumentWordUtil { ...@@ -175,7 +175,7 @@ public class DocumentWordUtil {
} }
public static String tr(){ public String tr(){
return "<w:tr>\n" + return "<w:tr>\n" +
" <w:tblPrEx>\n" + " <w:tblPrEx>\n" +
" <w:tblBorders>\n" + " <w:tblBorders>\n" +
...@@ -204,7 +204,7 @@ public class DocumentWordUtil { ...@@ -204,7 +204,7 @@ public class DocumentWordUtil {
" <w:trHeight w:val=\"400\" w:h-rule=\"atLeast\"/>\n" + " <w:trHeight w:val=\"400\" w:h-rule=\"atLeast\"/>\n" +
" </w:trPr>"; " </w:trPr>";
} }
public static String standtab(){ public String standtab(){
return "<w:tbl>\n" + return "<w:tbl>\n" +
" <w:tblPr>\n" + " <w:tblPr>\n" +
" <w:tblStyle w:val=\"a9\"/>\n" + " <w:tblStyle w:val=\"a9\"/>\n" +
...@@ -257,7 +257,7 @@ public class DocumentWordUtil { ...@@ -257,7 +257,7 @@ public class DocumentWordUtil {
" </w:tbl>"; " </w:tbl>";
} }
public static void yem(){ public void yem(){
String str="<w:sectPr>\n" + String str="<w:sectPr>\n" +
" <w:hdr w:type=\"odd\">\n" + " <w:hdr w:type=\"odd\">\n" +
" <w:p>\n" + " <w:p>\n" +
...@@ -464,7 +464,7 @@ public class DocumentWordUtil { ...@@ -464,7 +464,7 @@ public class DocumentWordUtil {
" <w:docGrid w:type=\"lines\" w:line-pitch=\"312\"/>\n" + " <w:docGrid w:type=\"lines\" w:line-pitch=\"312\"/>\n" +
" </w:sectPr>"; " </w:sectPr>";
} }
public static String tableTile(String technologyName,String strategy){ public String tableTile(String technologyName,String strategy){
return "<w:p><w:pPr><w:tabs><w:tab w:val=\"left\" w:pos=\"5422\"/></w:tabs></w:pPr><w:r><w:rPr><w:rFonts w:hint=\"fareast\"/></w:rPr><w:t>关键技术:"+technologyName+"</w:t></w:r><w:r><w:rPr><w:rFonts w:hint=\"fareast\"/></w:rPr><w:tab/></w:r><w:r><w:rPr><w:rFonts w:hint=\"fareast\"/></w:rPr><w:t>替换策略:"+strategy+"</w:t></w:r></w:p>"+"<w:tbl>\n" + return "<w:p><w:pPr><w:tabs><w:tab w:val=\"left\" w:pos=\"5422\"/></w:tabs></w:pPr><w:r><w:rPr><w:rFonts w:hint=\"fareast\"/></w:rPr><w:t>关键技术:"+technologyName+"</w:t></w:r><w:r><w:rPr><w:rFonts w:hint=\"fareast\"/></w:rPr><w:tab/></w:r><w:r><w:rPr><w:rFonts w:hint=\"fareast\"/></w:rPr><w:t>替换策略:"+strategy+"</w:t></w:r></w:p>"+"<w:tbl>\n" +
" <w:tblPr>\n" + " <w:tblPr>\n" +
" <w:tblStyle w:val=\"a13\"/>\n" + " <w:tblStyle w:val=\"a13\"/>\n" +
...@@ -582,7 +582,7 @@ public class DocumentWordUtil { ...@@ -582,7 +582,7 @@ public class DocumentWordUtil {
" </w:tc>\n" + " </w:tc>\n" +
" </w:tr>\n"; " </w:tr>\n";
} }
public static String enddard(){ public String enddard(){
return "<w:sectPr>\n" + return "<w:sectPr>\n" +
" <w:hdr w:type=\"odd\">\n" + " <w:hdr w:type=\"odd\">\n" +
" <w:p>\n" + " <w:p>\n" +
...@@ -792,7 +792,7 @@ public class DocumentWordUtil { ...@@ -792,7 +792,7 @@ public class DocumentWordUtil {
" </w:body>\n" + " </w:body>\n" +
"</w:wordDocument>"; "</w:wordDocument>";
} }
public static String standard(){ public String standard(){
String str="<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n" + String str="<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n" +
"<?mso-application progid=\"Word.Document\"?>\n" + "<?mso-application progid=\"Word.Document\"?>\n" +
"<w:wordDocument xmlns:w=\"http://schemas.microsoft.com/office/word/2003/wordml\" xmlns:v=\"urn:schemas-microsoft-com:vml\"\n" + "<w:wordDocument xmlns:w=\"http://schemas.microsoft.com/office/word/2003/wordml\" xmlns:v=\"urn:schemas-microsoft-com:vml\"\n" +
...@@ -1374,7 +1374,7 @@ public class DocumentWordUtil { ...@@ -1374,7 +1374,7 @@ public class DocumentWordUtil {
" <wx:sect>\n"; " <wx:sect>\n";
return str; return str;
} }
public static String biaoge(TechnologyContent content){ public String biaoge(TechnologyContent content){
return "<w:tr>\n" + return "<w:tr>\n" +
" <w:tblPrEx>\n" + " <w:tblPrEx>\n" +
" <w:tblBorders>\n" + " <w:tblBorders>\n" +
...@@ -1470,16 +1470,16 @@ public class DocumentWordUtil { ...@@ -1470,16 +1470,16 @@ public class DocumentWordUtil {
" </w:tr>"; " </w:tr>";
} }
public static String createDocument(DocumentPage documentPage) { public String createDocument(DocumentPage documentPage) {
StringBuilder sb=new StringBuilder(); StringBuilder sb=new StringBuilder();
//前面部分内容 //前面部分内容
String standard = DocumentWordUtil.standard(); String standard = standard();
String enddard = DocumentWordUtil.enddard(); String enddard = enddard();
//标题内容 //标题内容
String maintitle = DocumentWordUtil.Maintitle(); String maintitle = Maintitle();
// String subheading = DocumentWordUtil.subheading(); // String subheading = DocumentWordUtil.subheading();
//标题下的内容 //标题下的内容
String standContent = DocumentWordUtil.content(); String standContent = content();
//表格内容 //表格内容
...@@ -1493,7 +1493,7 @@ public class DocumentWordUtil { ...@@ -1493,7 +1493,7 @@ public class DocumentWordUtil {
for (TitleHead titleHead : titleHeads) { for (TitleHead titleHead : titleHeads) {
DocumentTitleEnum byCode = DocumentTitleEnum.getByCode(titleHead.getParentId()); DocumentTitleEnum byCode = DocumentTitleEnum.getByCode(titleHead.getParentId());
if (byCode != null) { if (byCode != null) {
String titleContent = DocumentWordUtil.subheading(byCode); String titleContent = subheading(byCode);
//标题名称 //标题名称
String name = titleHead.getName(); String name = titleHead.getName();
......
...@@ -201,18 +201,19 @@ public class WpsUtil { ...@@ -201,18 +201,19 @@ public class WpsUtil {
StringBuilder youhua = new StringBuilder(); StringBuilder youhua = new StringBuilder();
StringBuilder xiugai = new StringBuilder(); StringBuilder xiugai = new StringBuilder();
StringBuilder weizhi = new StringBuilder(); StringBuilder weizhi = new StringBuilder();
DocumentWordUtil documentWordUtil=new DocumentWordUtil();
for (String string : strings) { for (String string : strings) {
if (string.contains("优化")) { if (string.contains("优化")) {
List<TechnologyContent> technologyContents = teMap.get(string); List<TechnologyContent> technologyContents = teMap.get(string);
String str = DocumentWordUtil.getTableString(technologyContents, string, "优化"); String str = documentWordUtil.getTableString(technologyContents, string, "优化");
youhua.append(str); youhua.append(str);
} else if (string.contains("不支持")) { } else if (string.contains("不支持")) {
List<TechnologyContent> technologyContents = teMap.get(string); List<TechnologyContent> technologyContents = teMap.get(string);
String str = DocumentWordUtil.getTableString(technologyContents, string, "重新开发"); String str = documentWordUtil.getTableString(technologyContents, string, "重新开发");
xiugai.append(str); xiugai.append(str);
} else if (string.contains("未知")) { } else if (string.contains("未知")) {
List<TechnologyContent> technologyContents = teMap.get(string); List<TechnologyContent> technologyContents = teMap.get(string);
String str = DocumentWordUtil.getTableString(technologyContents, string, "验证修改或重新开发"); String str = documentWordUtil.getTableString(technologyContents, string, "验证修改或重新开发");
weizhi.append(str); weizhi.append(str);
} }
} }
......
<!DOCTYPE html> <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<html lang="en"> <?mso-application progid="Word.Document"?>
<head> <w:wordDocument xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:v="urn:schemas-microsoft-com:vml"
<meta charset="UTF-8"> xmlns:w10="urn:schemas-microsoft-com:office:word"
<title>应用系统评估详情</title> xmlns:sl="http://schemas.microsoft.com/schemaLibrary/2003/core"
<style> xmlns:aml="http://schemas.microsoft.com/aml/2001/core"
.detailContent { xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint"
background: #f9f9f9; xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
height: 800px; w:macrosPresent="no" w:embeddedObjPresent="no" w:ocxPresent="no" xml:space="preserve"><o:DocumentProperties>
} <o:Author>Jey</o:Author>
.detailContentT { <o:LastAuthor>jey</o:LastAuthor>
color: #333; <o:Created>2014-10-29T12:08:00Z</o:Created>
font-size: 28px; <o:LastSaved>2020-04-22T04:03:48Z</o:LastSaved>
text-align: center; <o:TotalTime>5760</o:TotalTime>
padding: 20px 0; <o:Pages>1</o:Pages>
} <o:Words>0</o:Words>
.systemName { <o:Characters>0</o:Characters>
height: 215px; <o:Lines>0</o:Lines>
background: #fff; <o:Paragraphs>0</o:Paragraphs>
margin: 0 30px 20px; <o:CharactersWithSpaces>0</o:CharactersWithSpaces>
} <o:Version>14</o:Version>
.systemName>img { </o:DocumentProperties>
margin: 20px 10px -2px 20px; <o:CustomDocumentProperties>
} <o:KSOProductBuildVer dt:dt="string">2052-11.1.0.9584</o:KSOProductBuildVer>
.keyTec { </o:CustomDocumentProperties>
height: 380px; <w:fonts>
background: #fff; <w:defaultFonts w:ascii="Calibri" w:fareast="宋体" w:h-ansi="Calibri" w:cs="Times New Roman"/>
margin: 0 30px; <w:font w:name="Times New Roman">
} <w:panose-1 w:val="02020603050405020304"/>
.nav-title { <w:charset w:val="00"/>
color: #333; <w:family w:val="Auto"/>
font-size: 22px; <w:pitch w:val="Default"/>
display: inline-block; <w:sig w:usb-0="E0002EFF" w:usb-1="C000785B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="400001FF"
} w:csb-1="FFFF0000"/>
.nav-time { </w:font>
float: right; <w:font w:name="宋体">
color: #333; <w:panose-1 w:val="02010600030101010101"/>
font-size: 22px; <w:charset w:val="86"/>
margin: 20px; <w:family w:val="Auto"/>
} <w:pitch w:val="Default"/>
.clearfloat { <w:sig w:usb-0="00000003" w:usb-1="288F0000" w:usb-2="00000006" w:usb-3="00000000" w:csb-0="00040001"
clear: both w:csb-1="00000000"/>
} </w:font>
.line { <w:font w:name="Wingdings">
height: 2px; <w:panose-1 w:val="05000000000000000000"/>
background: rgba(72,156,239,.3); <w:charset w:val="02"/>
margin: 0 30px; <w:family w:val="Auto"/>
} <w:pitch w:val="Default"/>
.systemNameCon { <w:sig w:usb-0="00000000" w:usb-1="00000000" w:usb-2="00000000" w:usb-3="00000000" w:csb-0="80000000"
display: flex; w:csb-1="00000000"/>
justify-content: space-around; </w:font>
align-items: center; <w:font w:name="Arial">
margin: 20px 0 20px 30px; <w:panose-1 w:val="020B0604020202020204"/>
} <w:charset w:val="01"/>
.systemNameCon>div { <w:family w:val="SWiss"/>
color: #666; <w:pitch w:val="Default"/>
font-size: 18px; <w:sig w:usb-0="E0002EFF" w:usb-1="C000785B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="400001FF"
width: 250px; w:csb-1="FFFF0000"/>
} </w:font>
.systemNameCon>div>span { <w:font w:name="黑体">
color: #333; <w:panose-1 w:val="02010600030101010101"/>
font-size: 18px; <w:charset w:val="86"/>
} <w:family w:val="Auto"/>
/*keyTec*/ <w:pitch w:val="Default"/>
.first>div>img,.second>div>img,.third>div>img { <w:sig w:usb-0="800002BF" w:usb-1="38CF7CFA" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="00040001"
margin: 20px 10px -2px 20px; w:csb-1="00000000"/>
} </w:font>
.first-title { <w:font w:name="Courier New">
margin-bottom: 10px; <w:panose-1 w:val="02070309020205020404"/>
position: relative; <w:charset w:val="01"/>
} <w:family w:val="Modern"/>
.rightPic { <w:pitch w:val="Default"/>
position: absolute; <w:sig w:usb-0="E0002EFF" w:usb-1="C0007843" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="400001FF"
right: 40px; w:csb-1="FFFF0000"/>
top: 30px; </w:font>
} <w:font w:name="Symbol">
.onClick { <w:panose-1 w:val="05050102010706020507"/>
width:0; <w:charset w:val="02"/>
height:0; <w:family w:val="Roman"/>
border-width:17px 17px 0; <w:pitch w:val="Default"/>
border-style:solid; <w:sig w:usb-0="00000000" w:usb-1="00000000" w:usb-2="00000000" w:usb-3="00000000" w:csb-0="80000000"
border-color:grey transparent transparent;/*灰 透明 透明 */ w:csb-1="00000000"/>
margin:40px auto; </w:font>
position:relative; <w:font w:name="Calibri">
top: 20px; <w:panose-1 w:val="020F0502020204030204"/>
} <w:charset w:val="00"/>
<w:family w:val="SWiss"/>
.key-title { <w:pitch w:val="Default"/>
color: #d32d2d; <w:sig w:usb-0="E0002EFF" w:usb-1="C000247B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="200001FF"
} w:csb-1="00000000"/>
.keySecond-title { </w:font>
color: #3bb21f; <w:font w:name="Wingdings">
} <w:panose-1 w:val="05000000000000000000"/>
.keyThird-title { <w:charset w:val="00"/>
color: #666; <w:family w:val="Auto"/>
} <w:pitch w:val="Default"/>
table{ <w:sig w:usb-0="00000000" w:usb-1="00000000" w:usb-2="00000000" w:usb-3="00000000" w:csb-0="80000000"
width: 100%; w:csb-1="00000000"/>
} </w:font>
.table-body{width:100%; height:300px;overflow-y:scroll;} <w:font w:name="Arial">
td{ <w:panose-1 w:val="020B0604020202020204"/>
text-align: center; <w:charset w:val="00"/>
height: 30px; <w:family w:val="Auto"/>
} <w:pitch w:val="Default"/>
tr td { <w:sig w:usb-0="E0002EFF" w:usb-1="C000785B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="400001FF"
color: #d32d2d; w:csb-1="FFFF0000"/>
} </w:font>
tr:last-child td { <w:font w:name="Courier New">
border-bottom: 1px dashed rgba(72,156,239,.3); <w:panose-1 w:val="02070309020205020404"/>
} <w:charset w:val="00"/>
th { <w:family w:val="Auto"/>
border-bottom: 1px dashed rgba(72,156,239,.3); <w:pitch w:val="Default"/>
} <w:sig w:usb-0="E0002EFF" w:usb-1="C0007843" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="400001FF"
.onAnaly { w:csb-1="FFFF0000"/>
margin: 0 30px; </w:font>
text-align: right; <w:font w:name="Symbol">
} <w:panose-1 w:val="05050102010706020507"/>
.onAonAnalysis { <w:charset w:val="00"/>
display: inline-block; <w:family w:val="Auto"/>
color: #666; <w:pitch w:val="Default"/>
padding-right: 20px; <w:sig w:usb-0="00000000" w:usb-1="00000000" w:usb-2="00000000" w:usb-3="00000000" w:csb-0="80000000"
} w:csb-1="00000000"/>
.onAonAnalysis>span { </w:font>
color: #333; <w:font w:name="汉仪雅酷黑 75W">
} <w:altName w:val="黑体"/>
<w:panose-1 w:val="00000000000000000000"/>
.className { <w:charset w:val="00"/>
transform:rotate(180deg) !important ; <w:family w:val="Auto"/>
} <w:pitch w:val="Default"/>
</style> <w:sig w:usb-0="00000000" w:usb-1="00000000" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="2004000F"
</head> w:csb-1="00000000"/>
<body> </w:font>
<div class="detailContent"> <w:font w:name="微软雅黑">
<p class="detailContentT">应用系统信创评估详情</p> <w:panose-1 w:val="020B0503020204020204"/>
<div class="systemName"> <w:charset w:val="86"/>
<img src="./img/system.png" alt=""> <w:family w:val="Auto"/>
<div class="nav-title">系统名称:<span>${inspect.projectName?default("")}</span></div> <w:pitch w:val="Default"/>
<div class="nav-time">评估时间:<span>${time?default("")}</span></div> <w:sig w:usb-0="80000287" w:usb-1="2ACF3C50" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="0004001F"
<div class="clearfloat"></div> w:csb-1="00000000"/>
<div class="line"></div> </w:font>
<div class="systemNameCon"> <w:font w:name="Tahoma">
<div>编号:<span>${inspect.id?default("")}</span></div> <w:panose-1 w:val="020B0604030504040204"/>
<div>上传类型:<span>${inspect.uploadType?default("")}</span></div> <w:charset w:val="00"/>
<div>文件名:<span>${inspect.fileName?default("")}</span></div> <w:family w:val="Auto"/>
<div>架构:<span>${inspect.framework?default("")}</span></div> <w:pitch w:val="Default"/>
</div> <w:sig w:usb-0="E1002EFF" w:usb-1="C000605B" w:usb-2="00000029" w:usb-3="00000000" w:csb-0="200101FF"
<div class="systemNameCon"> w:csb-1="20280000"/>
<div>数据库类型:<span>${inspect.databaseType?default("")}</span></div> </w:font>
<div>依赖管理工具:<span>${inspect.manager?default("")}</span></div> </w:fonts>
<div>语言: <span>${inspect.language?default("")}</span></div> <w:styles>
<div></div> <w:latentStyles w:defLockedState="off" w:latentStyleCount="260">
</div> <w:lsdException w:name="Normal"/>
<div class="systemNameCon"> <w:lsdException w:name="heading 1"/>
<w:lsdException w:name="heading 2"/>
</div> <w:lsdException w:name="heading 3"/>
<w:lsdException w:name="heading 4"/>
</div> <w:lsdException w:name="heading 5"/>
<div class="keyTec"> <w:lsdException w:name="heading 6"/>
<w:lsdException w:name="heading 7"/>
<#assign keys=warnMap?keys/> <w:lsdException w:name="heading 8"/>
<#list keys as key> <w:lsdException w:name="heading 9"/>
<#assign warns= warnMap[key]/> <w:lsdException w:name="index 1"/>
<w:lsdException w:name="index 2"/>
<div class="first"> <w:lsdException w:name="index 3"/>
<div class="first-title"> <w:lsdException w:name="index 4"/>
<img src="./img/key.png" alt=""> <w:lsdException w:name="index 5"/>
<div class="nav-title <w:lsdException w:name="index 6"/>
<#if techMap[key]==1> <w:lsdException w:name="index 7"/>
keySecond-title <w:lsdException w:name="index 8"/>
<#elseif techMap[key]==2> <w:lsdException w:name="index 9"/>
key-title <w:lsdException w:name="toc 1"/>
<#else> <w:lsdException w:name="toc 2"/>
keyThird-title <w:lsdException w:name="toc 3"/>
</#if>">关键技术:<span>${key?default("")} </div> <w:lsdException w:name="toc 4"/>
<div class="rightPic"> <w:lsdException w:name="toc 5"/>
<!--<img onclick="showDiv()" id="pic" src="./img/down.png" alt="">--> <w:lsdException w:name="toc 6"/>
<div id="pic" onclick="showDiv()"> <w:lsdException w:name="toc 7"/>
<span class="onClick"></span> <w:lsdException w:name="toc 8"/>
</div> <w:lsdException w:name="toc 9"/>
<w:lsdException w:name="Normal Indent"/>
</div> <w:lsdException w:name="footnote text"/>
</div> <w:lsdException w:name="annotation text"/>
<w:lsdException w:name="header"/>
<div class="line"></div> <w:lsdException w:name="footer"/>
<div id="slider" style="margin: 0 100px"> <w:lsdException w:name="index heading"/>
<table> <w:lsdException w:name="caption"/>
<tr> <w:lsdException w:name="table of figures"/>
<th>关键字</th> <w:lsdException w:name="envelope address"/>
<th>所在文件</th> <w:lsdException w:name="envelope return"/>
<th>行数</th> <w:lsdException w:name="footnote reference"/>
</tr> <w:lsdException w:name="annotation reference"/>
<#list warns as warn> <w:lsdException w:name="line number"/>
<tr > <w:lsdException w:name="page number"/>
<td class="<#if techMap[key]==1> <w:lsdException w:name="endnote reference"/>
keySecond-title <w:lsdException w:name="endnote text"/>
<#elseif techMap[key]==2> <w:lsdException w:name="table of authorities"/>
key-title <w:lsdException w:name="macro"/>
<#else> <w:lsdException w:name="toa heading"/>
keyThird-title <w:lsdException w:name="List"/>
</#if> ">${warn.rule?default("")}</td> <w:lsdException w:name="List Bullet"/>
<td class="<#if techMap[key]==1> <w:lsdException w:name="List Number"/>
keySecond-title <w:lsdException w:name="List 2"/>
<#elseif techMap[key]==2> <w:lsdException w:name="List 3"/>
key-title <w:lsdException w:name="List 4"/>
<#else> <w:lsdException w:name="List 5"/>
keyThird-title <w:lsdException w:name="List Bullet 2"/>
</#if> ">${warn.filePath?default("")}</td> <w:lsdException w:name="List Bullet 3"/>
<td class=" <#if techMap[key]==1> <w:lsdException w:name="List Bullet 4"/>
keySecond-title <w:lsdException w:name="List Bullet 5"/>
<#elseif techMap[key]==2> <w:lsdException w:name="List Number 2"/>
key-title <w:lsdException w:name="List Number 3"/>
<#else> <w:lsdException w:name="List Number 4"/>
keyThird-title <w:lsdException w:name="List Number 5"/>
</#if>">${warn.lineNum?default("")}</td> <w:lsdException w:name="Title"/>
</tr> <w:lsdException w:name="Closing"/>
</#list> <w:lsdException w:name="Signature"/>
</table> <w:lsdException w:name="Default Paragraph Font"/>
</div> <w:lsdException w:name="Body Text"/>
</div> <w:lsdException w:name="Body Text Indent"/>
<w:lsdException w:name="List Continue"/>
</#list> <w:lsdException w:name="List Continue 2"/>
<w:lsdException w:name="List Continue 3"/>
<div class="third"> <w:lsdException w:name="List Continue 4"/>
<div class="line"></div> <w:lsdException w:name="List Continue 5"/>
<w:lsdException w:name="Message Header"/>
<div class="onAnaly" id="thirdClick"> <w:lsdException w:name="Subtitle"/>
<div class="onAonAnalysis">关键技术总共:<span>${count?default("0")}</span></div> <w:lsdException w:name="Salutation"/>
<div class="onAonAnalysis">需要改造的关键技术:<span>${notSupport?default("0")}</span></div> <w:lsdException w:name="Date"/>
<div class="onAonAnalysis">泰源系统安可改造评估引擎:<span>版本号:10.6.9</span></div> <w:lsdException w:name="Body Text First Indent"/>
</div> <w:lsdException w:name="Body Text First Indent 2"/>
</div> <w:lsdException w:name="Note Heading"/>
</div> <w:lsdException w:name="Body Text 2"/>
</div> <w:lsdException w:name="Body Text 3"/>
<script type="text/javascript"> <w:lsdException w:name="Body Text Indent 2"/>
function showDiv(){ <w:lsdException w:name="Body Text Indent 3"/>
var slider=document.getElementById("slider"); <w:lsdException w:name="Block Text"/>
slider.style.display = slider.style.display=="none"?"":"none"; <w:lsdException w:name="Hyperlink"/>
if(slider.style.display == "none") { <w:lsdException w:name="FollowedHyperlink"/>
document.getElementById("pic").classList.add("className") <w:lsdException w:name="Strong"/>
}else { <w:lsdException w:name="Emphasis"/>
document.getElementById("pic").classList.remove("className") <w:lsdException w:name="Document Map"/>
} <w:lsdException w:name="Plain Text"/>
} <w:lsdException w:name="E-mail Signature"/>
function showDiv1(){ <w:lsdException w:name="Normal (Web)"/>
var secondClick=document.getElementById("secondClick"); <w:lsdException w:name="HTML Acronym"/>
secondClick.style.display = secondClick.style.display=="none"?"":"none"; <w:lsdException w:name="HTML Address"/>
if(secondClick.style.display == "none") { <w:lsdException w:name="HTML Cite"/>
document.getElementById("pic1").classList.add("className") <w:lsdException w:name="HTML Code"/>
}else { <w:lsdException w:name="HTML Definition"/>
document.getElementById("pic1").classList.remove("className") <w:lsdException w:name="HTML Keyboard"/>
} <w:lsdException w:name="HTML Preformatted"/>
} <w:lsdException w:name="HTML Sample"/>
function showDiv2(){ <w:lsdException w:name="HTML Typewriter"/>
var thirdClick=document.getElementById("thirdClick"); <w:lsdException w:name="HTML Variable"/>
thirdClick.style.display = thirdClick.style.display=="none"?"":"none"; <w:lsdException w:name="Normal Table"/>
if(thirdClick.style.display == "none") { <w:lsdException w:name="annotation subject"/>
document.getElementById("pic2").classList.add("className") <w:lsdException w:name="Table Simple 1"/>
}else { <w:lsdException w:name="Table Simple 2"/>
document.getElementById("pic2").classList.remove("className") <w:lsdException w:name="Table Simple 3"/>
} <w:lsdException w:name="Table Classic 1"/>
} <w:lsdException w:name="Table Classic 2"/>
</script> <w:lsdException w:name="Table Classic 3"/>
</body> <w:lsdException w:name="Table Classic 4"/>
</html> <w:lsdException w:name="Table Colorful 1"/>
\ No newline at end of file <w:lsdException w:name="Table Colorful 2"/>
<w:lsdException w:name="Table Colorful 3"/>
<w:lsdException w:name="Table Columns 1"/>
<w:lsdException w:name="Table Columns 2"/>
<w:lsdException w:name="Table Columns 3"/>
<w:lsdException w:name="Table Columns 4"/>
<w:lsdException w:name="Table Columns 5"/>
<w:lsdException w:name="Table Grid 1"/>
<w:lsdException w:name="Table Grid 2"/>
<w:lsdException w:name="Table Grid 3"/>
<w:lsdException w:name="Table Grid 4"/>
<w:lsdException w:name="Table Grid 5"/>
<w:lsdException w:name="Table Grid 6"/>
<w:lsdException w:name="Table Grid 7"/>
<w:lsdException w:name="Table Grid 8"/>
<w:lsdException w:name="Table List 1"/>
<w:lsdException w:name="Table List 2"/>
<w:lsdException w:name="Table List 3"/>
<w:lsdException w:name="Table List 4"/>
<w:lsdException w:name="Table List 5"/>
<w:lsdException w:name="Table List 6"/>
<w:lsdException w:name="Table List 7"/>
<w:lsdException w:name="Table List 8"/>
<w:lsdException w:name="Table 3D effects 1"/>
<w:lsdException w:name="Table 3D effects 2"/>
<w:lsdException w:name="Table 3D effects 3"/>
<w:lsdException w:name="Table Contemporary"/>
<w:lsdException w:name="Table Elegant"/>
<w:lsdException w:name="Table Professional"/>
<w:lsdException w:name="Table Subtle 1"/>
<w:lsdException w:name="Table Subtle 2"/>
<w:lsdException w:name="Table Web 1"/>
<w:lsdException w:name="Table Web 2"/>
<w:lsdException w:name="Table Web 3"/>
<w:lsdException w:name="Balloon Text"/>
<w:lsdException w:name="Table Grid"/>
<w:lsdException w:name="Table Theme"/>
<w:lsdException w:name="Light Shading"/>
<w:lsdException w:name="Light List"/>
<w:lsdException w:name="Light Grid"/>
<w:lsdException w:name="Medium Shading 1"/>
<w:lsdException w:name="Medium Shading 2"/>
<w:lsdException w:name="Medium List 1"/>
<w:lsdException w:name="Medium List 2"/>
<w:lsdException w:name="Medium Grid 1"/>
<w:lsdException w:name="Medium Grid 2"/>
<w:lsdException w:name="Medium Grid 3"/>
<w:lsdException w:name="Dark List"/>
<w:lsdException w:name="Colorful Shading"/>
<w:lsdException w:name="Colorful List"/>
<w:lsdException w:name="Colorful Grid"/>
<w:lsdException w:name="Light Shading Accent 1"/>
<w:lsdException w:name="Light List Accent 1"/>
<w:lsdException w:name="Light Grid Accent 1"/>
<w:lsdException w:name="Medium Shading 1 Accent 1"/>
<w:lsdException w:name="Medium Shading 2 Accent 1"/>
<w:lsdException w:name="Medium List 1 Accent 1"/>
<w:lsdException w:name="Medium List 2 Accent 1"/>
<w:lsdException w:name="Medium Grid 1 Accent 1"/>
<w:lsdException w:name="Medium Grid 2 Accent 1"/>
<w:lsdException w:name="Medium Grid 3 Accent 1"/>
<w:lsdException w:name="Dark List Accent 1"/>
<w:lsdException w:name="Colorful Shading Accent 1"/>
<w:lsdException w:name="Colorful List Accent 1"/>
<w:lsdException w:name="Colorful Grid Accent 1"/>
<w:lsdException w:name="Light Shading Accent 2"/>
<w:lsdException w:name="Light List Accent 2"/>
<w:lsdException w:name="Light Grid Accent 2"/>
<w:lsdException w:name="Medium Shading 1 Accent 2"/>
<w:lsdException w:name="Medium Shading 2 Accent 2"/>
<w:lsdException w:name="Medium List 1 Accent 2"/>
<w:lsdException w:name="Medium List 2 Accent 2"/>
<w:lsdException w:name="Medium Grid 1 Accent 2"/>
<w:lsdException w:name="Medium Grid 2 Accent 2"/>
<w:lsdException w:name="Medium Grid 3 Accent 2"/>
<w:lsdException w:name="Dark List Accent 2"/>
<w:lsdException w:name="Colorful Shading Accent 2"/>
<w:lsdException w:name="Colorful List Accent 2"/>
<w:lsdException w:name="Colorful Grid Accent 2"/>
<w:lsdException w:name="Light Shading Accent 3"/>
<w:lsdException w:name="Light List Accent 3"/>
<w:lsdException w:name="Light Grid Accent 3"/>
<w:lsdException w:name="Medium Shading 1 Accent 3"/>
<w:lsdException w:name="Medium Shading 2 Accent 3"/>
<w:lsdException w:name="Medium List 1 Accent 3"/>
<w:lsdException w:name="Medium List 2 Accent 3"/>
<w:lsdException w:name="Medium Grid 1 Accent 3"/>
<w:lsdException w:name="Medium Grid 2 Accent 3"/>
<w:lsdException w:name="Medium Grid 3 Accent 3"/>
<w:lsdException w:name="Dark List Accent 3"/>
<w:lsdException w:name="Colorful Shading Accent 3"/>
<w:lsdException w:name="Colorful List Accent 3"/>
<w:lsdException w:name="Colorful Grid Accent 3"/>
<w:lsdException w:name="Light Shading Accent 4"/>
<w:lsdException w:name="Light List Accent 4"/>
<w:lsdException w:name="Light Grid Accent 4"/>
<w:lsdException w:name="Medium Shading 1 Accent 4"/>
<w:lsdException w:name="Medium Shading 2 Accent 4"/>
<w:lsdException w:name="Medium List 1 Accent 4"/>
<w:lsdException w:name="Medium List 2 Accent 4"/>
<w:lsdException w:name="Medium Grid 1 Accent 4"/>
<w:lsdException w:name="Medium Grid 2 Accent 4"/>
<w:lsdException w:name="Medium Grid 3 Accent 4"/>
<w:lsdException w:name="Dark List Accent 4"/>
<w:lsdException w:name="Colorful Shading Accent 4"/>
<w:lsdException w:name="Colorful List Accent 4"/>
<w:lsdException w:name="Colorful Grid Accent 4"/>
<w:lsdException w:name="Light Shading Accent 5"/>
<w:lsdException w:name="Light List Accent 5"/>
<w:lsdException w:name="Light Grid Accent 5"/>
<w:lsdException w:name="Medium Shading 1 Accent 5"/>
<w:lsdException w:name="Medium Shading 2 Accent 5"/>
<w:lsdException w:name="Medium List 1 Accent 5"/>
<w:lsdException w:name="Medium List 2 Accent 5"/>
<w:lsdException w:name="Medium Grid 1 Accent 5"/>
<w:lsdException w:name="Medium Grid 2 Accent 5"/>
<w:lsdException w:name="Medium Grid 3 Accent 5"/>
<w:lsdException w:name="Dark List Accent 5"/>
<w:lsdException w:name="Colorful Shading Accent 5"/>
<w:lsdException w:name="Colorful List Accent 5"/>
<w:lsdException w:name="Colorful Grid Accent 5"/>
<w:lsdException w:name="Light Shading Accent 6"/>
<w:lsdException w:name="Light List Accent 6"/>
<w:lsdException w:name="Light Grid Accent 6"/>
<w:lsdException w:name="Medium Shading 1 Accent 6"/>
<w:lsdException w:name="Medium Shading 2 Accent 6"/>
<w:lsdException w:name="Medium List 1 Accent 6"/>
<w:lsdException w:name="Medium List 2 Accent 6"/>
<w:lsdException w:name="Medium Grid 1 Accent 6"/>
<w:lsdException w:name="Medium Grid 2 Accent 6"/>
<w:lsdException w:name="Medium Grid 3 Accent 6"/>
<w:lsdException w:name="Dark List Accent 6"/>
<w:lsdException w:name="Colorful Shading Accent 6"/>
<w:lsdException w:name="Colorful List Accent 6"/>
<w:lsdException w:name="Colorful Grid Accent 6"/>
</w:latentStyles>
<w:style w:type="paragraph" w:styleId="a1" w:default="on">
<w:name w:val="Normal"/>
<w:pPr>
<w:widowControl w:val="off"/>
<w:jc w:val="both"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Calibri" w:h-ansi="Calibri" w:fareast="宋体" w:cs="Times New Roman" w:hint="default"/>
<w:kern w:val="2"/>
<w:sz w:val="21"/>
<w:sz-cs w:val="24"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="2">
<w:name w:val="heading 1"/>
<w:basedOn w:val="a1"/>
<w:next w:val="a1"/>
<w:pPr>
<w:keepNext/>
<w:keepLines/>
<w:spacing w:before="340" w:before-lines="0" w:before-autospacing="off" w:after="330"
w:after-autospacing="off" w:line="576" w:line-rule="auto"/>
<w:outlineLvl w:val="0"/>
</w:pPr>
<w:rPr>
<w:b/>
<w:kern w:val="44"/>
<w:sz w:val="44"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="3">
<w:name w:val="heading 2"/>
<w:basedOn w:val="a1"/>
<w:next w:val="a1"/>
<w:pPr>
<w:keepNext/>
<w:keepLines/>
<w:spacing w:before="260" w:before-lines="0" w:before-autospacing="off" w:after="260"
w:after-autospacing="off" w:line="413" w:line-rule="auto"/>
<w:outlineLvl w:val="1"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:fareast="黑体" w:hint="default"/>
<w:b/>
<w:sz w:val="32"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="4">
<w:name w:val="heading 3"/>
<w:basedOn w:val="a1"/>
<w:next w:val="a1"/>
<w:pPr>
<w:keepNext/>
<w:keepLines/>
<w:spacing w:before="260" w:before-lines="0" w:before-autospacing="off" w:after="260"
w:after-autospacing="off" w:line="413" w:line-rule="auto"/>
<w:outlineLvl w:val="2"/>
</w:pPr>
<w:rPr>
<w:b/>
<w:sz w:val="32"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="5">
<w:name w:val="heading 4"/>
<w:basedOn w:val="a1"/>
<w:next w:val="a1"/>
<w:pPr>
<w:keepNext/>
<w:keepLines/>
<w:spacing w:before="280" w:before-lines="0" w:before-autospacing="off" w:after="290"
w:after-autospacing="off" w:line="372" w:line-rule="auto"/>
<w:outlineLvl w:val="3"/>
</w:pPr>
<w:rPr>
<w:rFonts w:ascii="Arial" w:h-ansi="Arial" w:fareast="黑体" w:hint="default"/>
<w:b/>
<w:sz w:val="28"/>
</w:rPr>
</w:style>
<w:style w:type="character" w:styleId="a10" w:default="on">
<w:name w:val="Default Paragraph Font"/>
</w:style>
<w:style w:type="table" w:styleId="a8" w:default="on">
<w:name w:val="Normal Table"/>
<w:semiHidden/>
<w:tblPr>
<w:tblCellMar>
<w:top w:w="0" w:type="dxa"/>
<w:left w:w="108" w:type="dxa"/>
<w:bottom w:w="0" w:type="dxa"/>
<w:right w:w="108" w:type="dxa"/>
</w:tblCellMar>
</w:tblPr>
</w:style>
<w:style w:type="paragraph" w:styleId="a6">
<w:name w:val="footer"/>
<w:basedOn w:val="a1"/>
<w:pPr>
<w:snapToGrid w:val="off"/>
<w:jc w:val="left"/>
</w:pPr>
<w:rPr>
<w:sz w:val="18"/>
</w:rPr>
</w:style>
<w:style w:type="paragraph" w:styleId="a7">
<w:name w:val="header"/>
<w:basedOn w:val="a1"/>
<w:pPr>
<w:pBdr>
<w:top w:val="nil"/>
<w:left w:val="nil"/>
<w:bottom w:val="nil"/>
<w:right w:val="nil"/>
</w:pBdr>
<w:snapToGrid w:val="off"/>
<w:spacing w:line="240" w:line-rule="auto"/>
<w:jc w:val="both"/>
<w:outlineLvl w:val="9"/>
</w:pPr>
<w:rPr>
<w:sz w:val="18"/>
</w:rPr>
</w:style>
<w:style w:type="table" w:styleId="a9">
<w:name w:val="Table Grid"/>
<w:basedOn w:val="a8"/>
<w:pPr>
<w:pStyle w:val="a8"/>
<w:widowControl w:val="off"/>
<w:jc w:val="both"/>
</w:pPr>
<w:tblPr>
<w:tblBorders>
<w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
</w:tblBorders>
<w:tblCellMar>
<w:top w:w="0" w:type="dxa"/>
<w:left w:w="108" w:type="dxa"/>
<w:bottom w:w="0" w:type="dxa"/>
<w:right w:w="108" w:type="dxa"/>
</w:tblCellMar>
</w:tblPr>
</w:style>
</w:styles>
<w:bgPict>
<w:background w:bgcolor="#FFFFFF"/>
<v:background id="_x0000_s1025">
<v:fill on="t" color2="#FFFFFF" focussize="0,0"/>
</v:background>
</w:bgPict>
<w:docPr>
<w:view w:val="print"/>
<w:zoom w:percent="100"/>
<w:characterSpacingControl w:val="CompressPunctuation"/>
<w:documentProtection w:enforcement="off"/>
<w:displayBackgroundShape w:val="1"/>
<w:punctuationKerning/>
<w:bordersDontSurroundHeader/>
<w:bordersDontSurroundFooter/>
<w:defaultTabStop w:val="420"/>
<w:drawingGridVerticalSpacing w:val="156"/>
<w:displayHorizontalDrawingGridEvery w:val="0"/>
<w:displayVerticalDrawingGridEvery w:val="2"/>
<w:compat>
<w:adjustLineHeightInTable/>
<w:ulTrailSpace/>
<w:doNotExpandShiftReturn/>
<w:balanceSingleByteDoubleByteWidth/>
<w:useFELayout/>
<w:spaceForUL/>
<w:wrapTextWithPunct/>
<w:breakWrappedTables/>
<w:useAsianBreakRules/>
<w:dontGrowAutofit/>
<w:useFELayout/>
</w:compat>
</w:docPr>
<w:body>
<wx:sect>
<w:p>
<w:pPr>
<w:pStyle w:val="2"/>
<w:jc w:val="center"/>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t>测试文档</w:t>
</w:r>
</w:p>
<w:p>
<w:pPr>
<w:ind w:first-line="420" w:first-line-chars="0"/>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t>没有比哪个更好的测试文档了士大夫艰苦都是浪费掉了的技法卢卡斯就打开了附近的的数据分类的大师傅立刻就了多款手机开发受到警方了解到首付款断开连接方式的理解。</w:t>
</w:r>
</w:p>
<w:p>
<w:pPr>
<w:rPr>
<w:rFonts w:hint="default"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
</w:p>
<w:p>
<w:pPr>
<w:pStyle w:val="3"/>
<w:rPr>
<w:rFonts w:hint="default"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t>${title}</w:t>
</w:r>
</w:p>
<w:tbl>
<w:tblPr>
<w:tblStyle w:val="a9"/>
<w:tblW w:w="8818" w:type="dxa"/>
<w:tblInd w:w="0" w:type="dxa"/>
<w:tblBorders>
<w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
</w:tblBorders>
<w:tblCellMar>
<w:top w:w="0" w:type="dxa"/>
<w:left w:w="108" w:type="dxa"/>
<w:bottom w:w="0" w:type="dxa"/>
<w:right w:w="108" w:type="dxa"/>
</w:tblCellMar>
</w:tblPr>
<w:tblGrid>
<w:gridCol w:w="1291"/>
<w:gridCol w:w="6465"/>
<w:gridCol w:w="1062"/>
</w:tblGrid>
<w:tr>
<w:tblPrEx>
<w:tblBorders>
<w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
</w:tblBorders>
<w:tblCellMar>
<w:top w:w="0" w:type="dxa"/>
<w:left w:w="108" w:type="dxa"/>
<w:bottom w:w="0" w:type="dxa"/>
<w:right w:w="108" w:type="dxa"/>
</w:tblCellMar>
</w:tblPrEx>
<w:trPr>
<w:trHeight w:val="388" w:h-rule="atLeast"/>
</w:trPr>
<w:tc>
<w:tcPr>
<w:tcW w:w="1291" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:widowControl w:val="off"/>
<w:jc w:val="center"/>
<w:rPr>
<w:rFonts w:hint="default"/>
<w:vertAlign w:val="baseline"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:vertAlign w:val="baseline"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t>关键字</w:t>
</w:r>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w="6465" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:widowControl w:val="off"/>
<w:jc w:val="center"/>
<w:rPr>
<w:rFonts w:hint="default"/>
<w:vertAlign w:val="baseline"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:vertAlign w:val="baseline"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t>文件名</w:t>
</w:r>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w="1062" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:widowControl w:val="off"/>
<w:jc w:val="center"/>
<w:rPr>
<w:rFonts w:hint="default"/>
<w:vertAlign w:val="baseline"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:vertAlign w:val="baseline"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t>位置</w:t>
</w:r>
</w:p>
</w:tc>
</w:tr>
<w:tr>
<w:tblPrEx>
<w:tblBorders>
<w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
<w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
</w:tblBorders>
<w:tblCellMar>
<w:top w:w="0" w:type="dxa"/>
<w:left w:w="108" w:type="dxa"/>
<w:bottom w:w="0" w:type="dxa"/>
<w:right w:w="108" w:type="dxa"/>
</w:tblCellMar>
</w:tblPrEx>
<w:trPr>
<w:trHeight w:val="880" w:h-rule="atLeast"/>
</w:trPr>
<w:tc>
<w:tcPr>
<w:tcW w:w="1291" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:widowControl w:val="off"/>
<w:jc w:val="center"/>
<w:rPr>
<w:rFonts w:hint="default"/>
<w:vertAlign w:val="baseline"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:vertAlign w:val="baseline"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t>${target}</w:t>
</w:r>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w="6465" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:widowControl w:val="off"/>
<w:jc w:val="both"/>
<w:rPr>
<w:rFonts w:hint="default"/>
<w:vertAlign w:val="baseline"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:vertAlign w:val="baseline"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t>${fileName}</w:t>
</w:r>
</w:p>
</w:tc>
<w:tc>
<w:tcPr>
<w:tcW w:w="1062" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
</w:tcPr>
<w:p>
<w:pPr>
<w:widowControl w:val="off"/>
<w:jc w:val="center"/>
<w:rPr>
<w:rFonts w:hint="default"/>
<w:vertAlign w:val="baseline"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:vertAlign w:val="baseline"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t>${opt}</w:t>
</w:r>
</w:p>
</w:tc>
</w:tr>
</w:tbl>
<w:p>
<w:pPr>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
</w:p>
<w:p>
<w:pPr>
<w:pStyle w:val="3"/>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t>一级标题</w:t>
</w:r>
</w:p>
<w:p>
<w:pPr>
<w:pStyle w:val="4"/>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t>二级标题</w:t>
</w:r>
</w:p>
<w:p>
<w:pPr>
<w:pStyle w:val="5"/>
<w:rPr>
<w:rFonts w:hint="default"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t>三级标题</w:t>
</w:r>
</w:p>
<w:sectPr>
<w:hdr w:type="odd">
<w:p>
<w:pPr>
<w:pStyle w:val="a7"/>
<w:tabs>
<w:tab w:val="center" w:pos="4153"/>
<w:tab w:val="right" w:pos="8306"/>
</w:tabs>
</w:pPr>
<w:r>
<w:rPr>
<w:sz w:val="18"/>
</w:rPr>
<w:pict>
<v:group id="_x0000_s1026" o:spt="203"
style="position:absolute;left:0pt;margin-left:0pt;margin-top:0pt;height:23.85pt;width:596.1pt;mso-position-horizontal-relative:page;mso-position-vertical-relative:page;z-index:251658240;mso-width-relative:margin;mso-height-relative:page;"
coordorigin="2107,1246" coordsize="8306,477">
<o:lock v:ext="edit" aspectratio="f"/>
<v:shape id="_x0000_s1027" o:spt="202" type="#_x0000_t202"
style="position:absolute;left:2107;top:1246;height:477;width:1388;"
filled="f" stroked="f" coordsize="21600,21600">
<v:path/>
<v:fill on="f" focussize="0,0"/>
<v:stroke on="f" weight="0.5pt"/>
<v:imagedata o:title=""/>
<o:lock v:ext="edit" aspectratio="f"/>
<v:textbox>
<w:txbxContent>
<w:p>
<w:pPr>
<w:rPr>
<w:rFonts w:ascii="汉仪雅酷黑 75W" w:h-ansi="汉仪雅酷黑 75W"
w:fareast="汉仪雅酷黑 75W" w:cs="汉仪雅酷黑 75W"
w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:ascii="汉仪雅酷黑 75W" w:h-ansi="汉仪雅酷黑 75W"
w:fareast="汉仪雅酷黑 75W" w:cs="汉仪雅酷黑 75W"
w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t>工作项目</w:t>
</w:r>
</w:p>
</w:txbxContent>
</v:textbox>
</v:shape>
<v:shape id="_x0000_s1028" o:spt="202" type="#_x0000_t202"
style="position:absolute;left:5566;top:1246;height:477;width:1388;"
filled="f" stroked="f" coordsize="21600,21600">
<v:path/>
<v:fill on="f" focussize="0,0"/>
<v:stroke on="f" weight="0.5pt"/>
<v:imagedata o:title=""/>
<o:lock v:ext="edit" aspectratio="f"/>
<v:textbox>
<w:txbxContent>
<w:p>
<w:pPr>
<w:jc w:val="center"/>
<w:rPr>
<w:rFonts w:ascii="汉仪雅酷黑 75W" w:h-ansi="汉仪雅酷黑 75W"
w:fareast="汉仪雅酷黑 75W" w:cs="汉仪雅酷黑 75W"
w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:ascii="汉仪雅酷黑 75W" w:h-ansi="汉仪雅酷黑 75W"
w:fareast="汉仪雅酷黑 75W" w:cs="汉仪雅酷黑 75W"
w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t>工作内容</w:t>
</w:r>
</w:p>
</w:txbxContent>
</v:textbox>
</v:shape>
<v:shape id="_x0000_s1029" o:spt="202" type="#_x0000_t202"
style="position:absolute;left:9025;top:1246;height:477;width:1388;"
filled="f" stroked="f" coordsize="21600,21600">
<v:path/>
<v:fill on="f" focussize="0,0"/>
<v:stroke on="f" weight="0.5pt"/>
<v:imagedata o:title=""/>
<o:lock v:ext="edit" aspectratio="f"/>
<v:textbox>
<w:txbxContent>
<w:p>
<w:pPr>
<w:jc w:val="right"/>
<w:rPr>
<w:rFonts w:ascii="汉仪雅酷黑 75W" w:h-ansi="汉仪雅酷黑 75W"
w:fareast="汉仪雅酷黑 75W" w:cs="汉仪雅酷黑 75W"
w:hint="default"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:ascii="汉仪雅酷黑 75W" w:h-ansi="汉仪雅酷黑 75W"
w:fareast="汉仪雅酷黑 75W" w:cs="汉仪雅酷黑 75W"
w:hint="fareast"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t>公司名称</w:t>
</w:r>
</w:p>
</w:txbxContent>
</v:textbox>
</v:shape>
<v:line id="_x0000_s1030" o:spt="20"
style="position:absolute;left:2107;top:1723;height:0;width:8305;" filled="f"
stroked="t" coordsize="21600,21600">
<v:path arrowok="t"/>
<v:fill on="f" focussize="0,0"/>
<v:stroke color="#000000" joinstyle="round"/>
<v:imagedata o:title=""/>
<o:lock v:ext="edit" aspectratio="f"/>
</v:line>
</v:group>
</w:pict>
</w:r>
</w:p>
</w:hdr>
<w:ftr w:type="odd">
<w:p>
<w:pPr>
<w:pStyle w:val="a6"/>
<w:tabs>
<w:tab w:val="center" w:pos="4153"/>
<w:tab w:val="right" w:pos="8306"/>
</w:tabs>
</w:pPr>
<w:r>
<w:rPr>
<w:sz w:val="18"/>
</w:rPr>
<w:pict>
<v:shape id="_x0000_s1031" o:spt="202" type="#_x0000_t202"
style="position:absolute;left:0pt;margin-top:0pt;height:144pt;width:144pt;mso-position-horizontal:center;mso-position-horizontal-relative:margin;mso-wrap-style:none;z-index:252706816;mso-width-relative:page;mso-height-relative:page;"
filled="f" stroked="f" coordsize="21600,21600">
<v:path/>
<v:fill on="f" focussize="0,0"/>
<v:stroke on="f"/>
<v:imagedata o:title=""/>
<o:lock v:ext="edit" aspectratio="f"/>
<v:textbox inset="0.00pt,0.00pt,0.00pt,0.00pt" style="mso-fit-shape-to-text:t;">
<w:txbxContent>
<w:p>
<w:pPr>
<w:pStyle w:val="a6"/>
<w:tabs>
<w:tab w:val="center" w:pos="4153"/>
<w:tab w:val="right" w:pos="8306"/>
</w:tabs>
<w:rPr>
<w:rFonts w:fareast="宋体" w:hint="fareast"/>
<w:lang w:fareast="ZH-CN"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:fareast="ZH-CN"/>
</w:rPr>
<w:fldChar w:fldCharType="begin"/>
</w:r>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:fareast="ZH-CN"/>
</w:rPr>
<w:instrText> PAGE \* MERGEFORMAT</w:instrText>
</w:r>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:fareast="ZH-CN"/>
</w:rPr>
<w:fldChar w:fldCharType="separate"/>
</w:r>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:fareast="ZH-CN"/>
</w:rPr>
<w:t>1</w:t>
</w:r>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:lang w:fareast="ZH-CN"/>
</w:rPr>
<w:fldChar w:fldCharType="end"/>
</w:r>
</w:p>
</w:txbxContent>
</v:textbox>
</v:shape>
</w:pict>
</w:r>
</w:p>
</w:ftr>
<w:pgSz w:w="11906" w:h="16838"/>
<w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800" w:header="851" w:footer="992"
w:gutter="0"/>
<w:cols w:space="425"/>
<w:docGrid w:type="lines" w:line-pitch="312"/>
</w:sectPr>
</wx:sect>
</w:body></w:wordDocument>
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论