parent
9da2e4fd8a
commit
336bd4eb20
@ -1,10 +1,126 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
<th:block th:include="include :: header('文件下发列表')" />
|
||||
</head>
|
||||
<body>
|
||||
<body class="gray-bg">
|
||||
<div class="container-div">
|
||||
<div class="row">
|
||||
<div class="col-sm-12 search-collapse">
|
||||
<form id="formId">
|
||||
<div class="select-list">
|
||||
<ul>
|
||||
<li>
|
||||
<label>发文单位:</label>
|
||||
<input type="text" name="provideDepart"/>
|
||||
</li>
|
||||
<li>
|
||||
<label>紧急程度:</label>
|
||||
<select name="instancyExtent" th:with="type=${@dict.getType('sys_file_jinjichengdu')}">
|
||||
<option value="">所有</option>
|
||||
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
||||
</select>
|
||||
</li>
|
||||
<li>
|
||||
<label>所属地区:</label>
|
||||
<input type="text" name="frameworkId"/>
|
||||
</li>
|
||||
<li>
|
||||
<label>文件标题:</label>
|
||||
<input type="text" name="fileName"/>
|
||||
</li>
|
||||
<li>
|
||||
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
||||
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i> 重置</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="btn-group-sm" id="toolbar" role="group">
|
||||
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="system:fileprovide:export">
|
||||
<i class="fa fa-download"></i> 导出
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-sm-12 select-table table-striped">
|
||||
<table id="bootstrap-table"></table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<th:block th:include="include :: footer" />
|
||||
<script th:inline="javascript">
|
||||
var detailFlag = [[${@permission.hasPermi('system:filenum:print')}]];
|
||||
var instancyExtentDatas = [[${@dict.getType('sys_file_jinjichengdu')}]];
|
||||
var fileSecretDatas = [[${@dict.getType('sys_file_miji')}]];
|
||||
var prefix = ctx + "system/filenum";
|
||||
|
||||
$(function() {
|
||||
var options = {
|
||||
url: prefix + "/list",
|
||||
exportUrl: prefix + "/export",
|
||||
modalName: "文件下发",
|
||||
columns: [{
|
||||
checkbox: true
|
||||
},
|
||||
{
|
||||
field: 'fileId',
|
||||
title: '文件编号'
|
||||
},
|
||||
{
|
||||
field: 'fileName',
|
||||
title: '文件标题'
|
||||
},
|
||||
{
|
||||
field: 'fileNum',
|
||||
title: '文号'
|
||||
},
|
||||
{
|
||||
field: 'provideCount',
|
||||
title: '发文份数'
|
||||
},
|
||||
{
|
||||
field: 'provideDepart',
|
||||
title: '发文单位'
|
||||
},
|
||||
{
|
||||
field: 'provideDate',
|
||||
title: '发文日期'
|
||||
},
|
||||
{
|
||||
field: 'instancyExtent',
|
||||
title: '紧急程度',
|
||||
formatter: function(value, row, index) {
|
||||
return $.table.selectDictLabel(instancyExtentDatas, value);
|
||||
}
|
||||
},
|
||||
{
|
||||
field: 'frameworkId',
|
||||
title: '所属地区'
|
||||
},
|
||||
{
|
||||
field: 'fileSecret',
|
||||
title: '文件密级',
|
||||
formatter: function(value, row, index) {
|
||||
return $.table.selectDictLabel(fileSecretDatas, value);
|
||||
}
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
align: 'center',
|
||||
formatter: function(value, row, index) {
|
||||
var actions = [];
|
||||
actions.push('<a class="btn btn-info btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="print(\'' + row.fileId + '\')"><i class="fa fa-download"></i>打印</a> ');
|
||||
return actions.join('');
|
||||
}
|
||||
}]
|
||||
};
|
||||
$.table.init(options);
|
||||
});
|
||||
function print(netId) {
|
||||
var url = prefix + '/print/' + netId;
|
||||
$.modal.openTab("打印", url);
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -1,10 +1,792 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
|
||||
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
||||
xmlns:o="urn:schemas-microsoft-com:office:office"
|
||||
xmlns:x="urn:schemas-microsoft-com:office:excel"
|
||||
xmlns="http://www.w3.org/TR/REC-html40">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
<th:block th:include="include :: header('涉密网络打印')" />
|
||||
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
||||
<meta name=ProgId content=Excel.Sheet>
|
||||
<meta name=Generator content="Aspose.Cell ">
|
||||
<link rel=File-List href="avhdt-wgkvj_files/filelist.xml">
|
||||
<link rel=Edit-Time-Data href="avhdt-wgkvj_files/editdata.mso">
|
||||
<link rel=OLE-Object-Data href="avhdt-wgkvj_files/oledata.mso">
|
||||
<!--[if gte mso 9]><xml>
|
||||
<o:DocumentProperties>
|
||||
<o:Author>波强 赵</o:Author>
|
||||
<o:LastPrinted>2024-05-16T19:19:01Z</o:LastPrinted>
|
||||
<o:Created>2024-05-16T00:31:00Z</o:Created>
|
||||
<o:LastSaved>2024-05-16T19:19:07Z</o:LastSaved>
|
||||
</o:DocumentProperties>
|
||||
</xml><![endif]-->
|
||||
<style>
|
||||
<!--table
|
||||
{mso-displayed-decimal-separator:"\.";
|
||||
mso-displayed-thousand-separator:"\,";}
|
||||
@page
|
||||
{
|
||||
mso-header-data:"";
|
||||
mso-footer-data:"";
|
||||
margin:0.75in 0.7in 0.75in 0.7in;
|
||||
mso-header-margin:0.3in;
|
||||
mso-footer-margin:0.3in;
|
||||
mso-page-orientation:Landscape;
|
||||
}
|
||||
tr
|
||||
{mso-height-source:auto;
|
||||
mso-ruby-visibility:none;}
|
||||
col
|
||||
{mso-width-source:auto;
|
||||
mso-ruby-visibility:none;}
|
||||
br
|
||||
{mso-data-placement:same-cell;}
|
||||
ruby
|
||||
{ruby-align:left;}
|
||||
.style0
|
||||
{
|
||||
mso-number-format:General;
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:11pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif";
|
||||
border:none;
|
||||
mso-protection:locked visible;
|
||||
mso-style-name:Normal;
|
||||
mso-style-id:0;}
|
||||
.font0
|
||||
{
|
||||
color:#000000;
|
||||
font-size:11pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif"; }
|
||||
.font1
|
||||
{
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif"; }
|
||||
.font2
|
||||
{
|
||||
color:#000000;
|
||||
font-size:20pt;
|
||||
font-weight:700;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif"; }
|
||||
.font3
|
||||
{
|
||||
color:#000000;
|
||||
font-size:16pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif"; }
|
||||
.font4
|
||||
{
|
||||
color:#000000;
|
||||
font-size:9pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","monospace"; }
|
||||
td
|
||||
{mso-style-parent:style0;
|
||||
mso-number-format:General;
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:11pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif";
|
||||
border:none;
|
||||
mso-protection:locked visible;
|
||||
mso-ignore:padding;}
|
||||
.style0
|
||||
{
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:11pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
mso-style-name:"Normal";
|
||||
}
|
||||
.style1
|
||||
{
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.style2
|
||||
{
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.style3
|
||||
{
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.style4
|
||||
{
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.style5
|
||||
{
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.style6
|
||||
{
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.style7
|
||||
{
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.style8
|
||||
{
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.style9
|
||||
{
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.style10
|
||||
{
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.style11
|
||||
{
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.style12
|
||||
{
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.style13
|
||||
{
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.style14
|
||||
{
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.x15
|
||||
{
|
||||
mso-style-parent:style0;
|
||||
mso-number-format:General;
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:11pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.style16
|
||||
{
|
||||
mso-number-format:"0%";
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
mso-style-name:"Percent";
|
||||
}
|
||||
.style17
|
||||
{
|
||||
mso-number-format:"_\(\0022$\0022* \#\,\#\#0\.00_\)\;_\(\0022$\0022* \(\#\,\#\#0\.00\)\;_\(\0022$\0022* \0022-\0022??_\)\;_\(\@_\)";
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
mso-style-name:"Currency";
|
||||
}
|
||||
.style18
|
||||
{
|
||||
mso-number-format:"_\(\0022$\0022* \#\,\#\#0_\)\;_\(\0022$\0022* \(\#\,\#\#0\)\;_\(\0022$\0022* \0022-\0022_\)\;_\(\@_\)";
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
mso-style-name:"Currency [0]";
|
||||
}
|
||||
.style19
|
||||
{
|
||||
mso-number-format:"_\(* \#\,\#\#0\.00_\)\;_\(* \(\#\,\#\#0\.00\)\;_\(* \0022-\0022??_\)\;_\(\@_\)";
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
mso-style-name:"Comma";
|
||||
}
|
||||
.style20
|
||||
{
|
||||
mso-number-format:"_\(* \#\,\#\#0_\)\;_\(* \(\#\,\#\#0\)\;_\(* \0022-\0022_\)\;_\(\@_\)";
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:10pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"Arial","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
mso-style-name:"Comma [0]";
|
||||
}
|
||||
.x21
|
||||
{
|
||||
mso-style-parent:style0;
|
||||
mso-number-format:General;
|
||||
text-align:left;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:16pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif";
|
||||
border-top:none;
|
||||
border-right:none;
|
||||
border-bottom:1px solid windowtext;
|
||||
border-left:none;
|
||||
mso-diagonal-down:none;
|
||||
mso-diagonal-up:none;
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.x22
|
||||
{
|
||||
mso-style-parent:style0;
|
||||
mso-number-format:General;
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:16pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif";
|
||||
border-top:none;
|
||||
border-right:none;
|
||||
border-bottom:1px solid windowtext;
|
||||
border-left:none;
|
||||
mso-diagonal-down:none;
|
||||
mso-diagonal-up:none;
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.x23
|
||||
{
|
||||
mso-style-parent:style0;
|
||||
mso-number-format:General;
|
||||
text-align:general;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:11pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif";
|
||||
border-top:none;
|
||||
border-right:none;
|
||||
border-bottom:1px solid windowtext;
|
||||
border-left:none;
|
||||
mso-diagonal-down:none;
|
||||
mso-diagonal-up:none;
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.x24
|
||||
{
|
||||
mso-style-parent:style0;
|
||||
mso-number-format:General;
|
||||
text-align:right;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:16pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif";
|
||||
border-top:none;
|
||||
border-right:none;
|
||||
border-bottom:1px solid windowtext;
|
||||
border-left:none;
|
||||
mso-diagonal-down:none;
|
||||
mso-diagonal-up:none;
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.x25
|
||||
{
|
||||
mso-style-parent:style0;
|
||||
mso-number-format:General;
|
||||
text-align:center;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:11pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif";
|
||||
border-top:1px solid windowtext;
|
||||
border-right:1px solid windowtext;
|
||||
border-bottom:1px solid windowtext;
|
||||
border-left:1px solid windowtext;
|
||||
mso-diagonal-down:none;
|
||||
mso-diagonal-up:none;
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.x26
|
||||
{
|
||||
mso-style-parent:style0;
|
||||
mso-number-format:General;
|
||||
text-align:center;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:20pt;
|
||||
font-weight:700;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.x27
|
||||
{
|
||||
mso-style-parent:style0;
|
||||
mso-number-format:General;
|
||||
text-align:left;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:16pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif";
|
||||
border-top:none;
|
||||
border-right:none;
|
||||
border-bottom:1px solid windowtext;
|
||||
border-left:none;
|
||||
mso-diagonal-down:none;
|
||||
mso-diagonal-up:none;
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.x28
|
||||
{
|
||||
mso-style-parent:style0;
|
||||
mso-number-format:General;
|
||||
text-align:center;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:11pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif";
|
||||
border-top:1px solid windowtext;
|
||||
border-right:none;
|
||||
border-bottom:1px solid windowtext;
|
||||
border-left:1px solid windowtext;
|
||||
mso-diagonal-down:none;
|
||||
mso-diagonal-up:none;
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.x29
|
||||
{
|
||||
mso-style-parent:style0;
|
||||
mso-number-format:General;
|
||||
text-align:center;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:11pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","sans-serif";
|
||||
border-top:1px solid windowtext;
|
||||
border-right:1px solid windowtext;
|
||||
border-bottom:1px solid windowtext;
|
||||
border-left:none;
|
||||
mso-diagonal-down:none;
|
||||
mso-diagonal-up:none;
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.x30
|
||||
{
|
||||
mso-style-parent:style0;
|
||||
mso-number-format:General;
|
||||
text-align:center;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:20pt;
|
||||
font-weight:700;
|
||||
font-style:normal;
|
||||
font-family:"等线","monospace";
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.x31
|
||||
{
|
||||
mso-style-parent:style0;
|
||||
mso-number-format:General;
|
||||
text-align:center;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:11pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","monospace";
|
||||
border-top:1px solid windowtext;
|
||||
border-right:none;
|
||||
border-bottom:1px solid windowtext;
|
||||
border-left:1px solid windowtext;
|
||||
mso-diagonal-down:none;
|
||||
mso-diagonal-up:none;
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
.x32
|
||||
{
|
||||
mso-style-parent:style0;
|
||||
mso-number-format:General;
|
||||
text-align:center;
|
||||
vertical-align:middle;
|
||||
white-space:nowrap;
|
||||
background:auto;
|
||||
mso-pattern:auto;
|
||||
color:#000000;
|
||||
font-size:11pt;
|
||||
font-weight:400;
|
||||
font-style:normal;
|
||||
font-family:"等线","monospace";
|
||||
border-top:1px solid windowtext;
|
||||
border-right:1px solid windowtext;
|
||||
border-bottom:1px solid windowtext;
|
||||
border-left:1px solid windowtext;
|
||||
mso-diagonal-down:none;
|
||||
mso-diagonal-up:none;
|
||||
mso-protection:locked visible;
|
||||
}
|
||||
-->
|
||||
</style>
|
||||
<!--[if gte mso 9]><xml>
|
||||
<x:ExcelWorkbook>
|
||||
<x:ExcelWorksheets>
|
||||
<x:ExcelWorksheet>
|
||||
<x:Name>Sheet1</x:Name>
|
||||
<x:WorksheetOptions>
|
||||
<x:StandardWidth>2304</x:StandardWidth>
|
||||
<x:Print>
|
||||
<x:ValidPrinterInfo/>
|
||||
<x:PaperSizeIndex>9</x:PaperSizeIndex>
|
||||
<x:HorizontalResolution>600</x:HorizontalResolution>
|
||||
<x:VerticalResolution>600</x:VerticalResolution>
|
||||
</x:Print>
|
||||
<x:Selected/>
|
||||
</x:WorksheetOptions>
|
||||
</x:ExcelWorksheet>
|
||||
</x:ExcelWorksheets>
|
||||
<x:WindowHeight>15500</x:WindowHeight>
|
||||
<x:WindowWidth>25820</x:WindowWidth>
|
||||
<x:WindowTopX>-110</x:WindowTopX>
|
||||
<x:WindowTopY>-110</x:WindowTopY>
|
||||
<x:RefModeR1C1/>
|
||||
<x:TabRatio>600</x:TabRatio>
|
||||
<x:ActiveSheet>0</x:ActiveSheet>
|
||||
</x:ExcelWorkbook>
|
||||
</xml><![endif]-->
|
||||
</head>
|
||||
<body>
|
||||
<body link=blue vlink=purple >
|
||||
|
||||
<table border=0 cellpadding=0 cellspacing=0 width=1027 style='border-collapse:
|
||||
collapse;table-layout:fixed;width:770pt;margin: auto'>
|
||||
<col width=180 style='mso-width-source:userset;width:135pt'>
|
||||
<col width=113 span=2 style='mso-width-source:userset;width:84.75pt'>
|
||||
<col width=105 style='mso-width-source:userset;width:78.75pt'>
|
||||
<col width=102 style='mso-width-source:userset;width:76.5pt'>
|
||||
<col width=167 style='mso-width-source:userset;width:125.25pt'>
|
||||
<col width=247 style='mso-width-source:userset;width:185.25pt'>
|
||||
<tr height=55 style='mso-height-source:userset;height:41.5pt' id='r0'>
|
||||
<td colspan=7 height=55 class=x30 width=1027 style='height:41.5pt;'>[[${sysuser.dept.deptName}]]涉密文件信息表</td>
|
||||
</tr>
|
||||
<tr height=55 style='mso-height-source:userset;height:41.5pt' id='r1'>
|
||||
<td colspan=2 height=54 class=x27 style='border-bottom:1px solid windowtext;height:40.75pt;'>单位:[[${sysuser.dept.deptName}]]</td>
|
||||
<td class=x22></td>
|
||||
<td class=x23></td>
|
||||
<td class=x23></td>
|
||||
<td class=x24><span style='float:right' id="dqdate"></span></td>
|
||||
<td class=x21></td>
|
||||
</tr>
|
||||
<tr height=34 style='mso-height-source:userset;height:26pt' id='r2'>
|
||||
<td colspan=2 height=32 class=x31 style='font-weight:bold;border-right:1px solid windowtext;border-bottom:1px solid windowtext;height:24.5pt;'>所属地市</td>
|
||||
<td colspan=2 class=x31 style='font-weight:bold;border-right:1px solid windowtext;border-bottom:1px solid windowtext;'>所属区县</td>
|
||||
<td colspan=2 class=x31 style='font-weight:bold;border-right:1px solid windowtext;border-bottom:1px solid windowtext;'>接收单位</td>
|
||||
<td class=x32 style="font-weight:bold;">文件数量</td>
|
||||
</tr>
|
||||
<tr height=34 style='mso-height-source:userset;height:26pt' id='r3'>
|
||||
<td colspan=2 height=32 class=x28 style='border-right:1px solid windowtext;border-bottom:1px solid windowtext;height:24.5pt;'>
|
||||
[[${tdFileProvide.frameworkId}]]
|
||||
</td>
|
||||
<td colspan=2 class=x28 style='border-right:1px solid windowtext;border-bottom:1px solid windowtext;'>
|
||||
[[${tdFileProvide.areaid}]]
|
||||
</td>
|
||||
<td colspan=2 class=x28 style='border-right:1px solid windowtext;border-bottom:1px solid windowtext;'>
|
||||
[[${tdFileProvide.targetDepart}]]
|
||||
</td>
|
||||
<td class=x25>[[${tdFileProvide.provideCount}]]</td>
|
||||
</tr>
|
||||
<tr height=34 style='mso-height-source:userset;height:26pt' id='r4'>
|
||||
<td colspan=2 height=32 class=x31 style='font-weight:bold;border-right:1px solid windowtext;border-bottom:1px solid windowtext;height:24.5pt;'>文件名称</td>
|
||||
<td colspan=2 class=x31 style='font-weight:bold;border-right:1px solid windowtext;border-bottom:1px solid windowtext;'>文件号</td>
|
||||
<td colspan=2 class=x31 style='font-weight:bold;border-right:1px solid windowtext;border-bottom:1px solid windowtext;'>发文人员</td>
|
||||
<td class=x32 style="font-weight:bold;">发文日期</td>
|
||||
</tr>
|
||||
<tr height=34 style='mso-height-source:userset;height:26pt' id='r5' th:each="propertynum : ${tdFileReceives}">
|
||||
<td colspan=2 height=32 class=x31 style='border-right:1px solid windowtext;border-bottom:1px solid windowtext;height:24.5pt;'>
|
||||
[[${propertynum.fileName}]]
|
||||
</td>
|
||||
<td colspan=2 class=x31 style='border-right:1px solid windowtext;border-bottom:1px solid windowtext;'>
|
||||
[[${tdFileProvide.fileNum}]]
|
||||
</td>
|
||||
<td colspan=2 class=x31 style='border-right:1px solid windowtext;border-bottom:1px solid windowtext;'>
|
||||
[[${tdFileProvide.provideUserid}]]
|
||||
</td>
|
||||
<td class="x32 provideDate">[[${tdFileProvide.provideDate}]]</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<!-- 打印网页时通过hidden-print隐藏元素 -->
|
||||
<div class="text-right hidden-print" style="position: absolute;bottom: 20px;right: 50%;">
|
||||
<button class="btn btn-primary" onclick="printPage()"><i class="fa fa-print"></i> 打印</button>
|
||||
</div>
|
||||
</tr>
|
||||
<![endif]>
|
||||
</table>
|
||||
<th:block th:include="include :: footer" />
|
||||
<script th:inline="javascript">
|
||||
function printPage() {
|
||||
window.print();
|
||||
}
|
||||
function conversionDate(date){
|
||||
var year = date.getFullYear();
|
||||
var month = String(date.getMonth() + 1).padStart(2, '0'); // 月份从 0 开始,需要加 1
|
||||
var day = String(date.getDate()).padStart(2, '0'); // 日可能是个位数,需要补零
|
||||
return year + '-' + month + '-' + day
|
||||
}
|
||||
document.querySelector('#dqdate').innerHTML ='日期:' + conversionDate(new Date())
|
||||
var examinestateToFind = [];
|
||||
document.querySelectorAll('.provideDate').forEach(function(element) {
|
||||
examinestateToFind.push(element.innerHTML);
|
||||
});
|
||||
examinestateToFind.forEach(function(value) {
|
||||
document.querySelectorAll('.provideDate').forEach(function(element) {
|
||||
element.innerHTML = conversionDate(new Date(document.querySelector('.provideDate').innerHTML))
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in new issue