parent
0b119d64f6
commit
20d36a1285
@ -1,10 +1,122 @@
|
||||
<!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="framework"/>
|
||||
</li>
|
||||
<li>
|
||||
<label>所属区县:</label>
|
||||
<input type="text" name="area"/>
|
||||
</li>
|
||||
<li>
|
||||
<label>使用单位:</label>
|
||||
<input type="text" name="netDepart"/>
|
||||
</li>
|
||||
<li>
|
||||
<label>部门名称:</label>
|
||||
<input type="text" name="part"/>
|
||||
</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:network: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 editFlag = [[${@permission.hasPermi('system:network:edit')}]];
|
||||
var removeFlag = [[${@permission.hasPermi('system:network:remove')}]];
|
||||
var listFlag = [[${@permission.hasPermi('system:network:list')}]];
|
||||
var netMijiDatas = [[${@dict.getType('sys_file_miji')}]];
|
||||
var prefix = ctx + "system/networknum";
|
||||
|
||||
$(function() {
|
||||
var options = {
|
||||
url: prefix + "/list",
|
||||
exportUrl: prefix + "/export",
|
||||
modalName: "涉密网络设备",
|
||||
columns: [{
|
||||
checkbox: true
|
||||
},
|
||||
{
|
||||
field: 'netId',
|
||||
title: '网络编号',
|
||||
// visible: false
|
||||
},
|
||||
{
|
||||
field: 'framework',
|
||||
title: '所属市州'
|
||||
},
|
||||
{
|
||||
field: 'area',
|
||||
title: '所属区县'
|
||||
},
|
||||
{
|
||||
field: 'netDepart',
|
||||
title: '使用单位'
|
||||
},
|
||||
{
|
||||
field: 'part',
|
||||
title: '使用部门'
|
||||
},
|
||||
{
|
||||
field: 'netUser',
|
||||
title: '登记人员'
|
||||
},
|
||||
{
|
||||
field: 'netDate',
|
||||
title: '登记日期'
|
||||
},
|
||||
{
|
||||
field: 'netMiji',
|
||||
title: '设备密级',
|
||||
formatter: function(value, row, index) {
|
||||
return $.table.selectDictLabel(netMijiDatas, value);
|
||||
}
|
||||
},
|
||||
{
|
||||
field: 'terminalNum',
|
||||
title: '设备数量'
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
align: 'center',
|
||||
formatter: function(value, row, index) {
|
||||
var actions = [];
|
||||
actions.push('<a class="btn btn-info btn-xs ' + listFlag + '" href="javascript:void(0)" onclick="print(\'' + row.netId + '\')"><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>
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue