publicity.html
3.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
<th:block th:include="include :: header('双公示信息报送情况')" />
</head>
<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 style="width: 110px;">统计周期:</label>
<select name="timeType">
<option value="xzcj">上个月</option>
<option value="xzjd">上个季度</option>
<option value="xzjl">上半年</option>
<option value="xzqz">上一年</option>
</select>
</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="business:red: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 nameTypeDatas = [[${@dict.getType('eit_red_list_type')}]];
var prefix = ctx + "business/credit/work";
$(function() {
var options = {
url: prefix + "/publicity/list",
exportUrl: prefix + "/export",
modalName: "双公示信息报送情况",
columns: [{
checkbox: true
},
{
field: 'id',
title: '自增id',
visible: false
},
{
field: 'nameType',
title: '单位名称'
},
{
field: 'enterpriseName',
title: '数据总量'
},
{
field: 'provideUnit',
title: '不合规数据数'
},
{
field: 'provideDate',
title: '不合规率'
},
{
field: 'reportDate',
title: '迟报数据数'
},
{
field: 'newsId',
title: '迟报率'
},
{
field: 'reportDate',
title: '瞒报数据数'
},
{
field: 'newsId',
title: '瞒报率'
}]
};
$.table.init(options);
});
</script>
</body>
</html>