|
|
@@ -3,7 +3,7 @@
|
|
3
|
3
|
|
|
4
|
4
|
<head>
|
|
5
|
5
|
<meta charset="UTF-8">
|
|
6
|
|
- <title>批评率统计</title>
|
|
|
6
|
+ <title>通报批评率统计</title>
|
|
7
|
7
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
8
|
8
|
<script src="../Script/Common/huayi.load.js"></script>
|
|
9
|
9
|
<script src="../Script/Common/huayi.config.js"></script>
|
|
|
@@ -56,6 +56,7 @@
|
|
56
|
56
|
.Borders {
|
|
57
|
57
|
border: 1px solid #d7d7d7;
|
|
58
|
58
|
}
|
|
|
59
|
+
|
|
59
|
60
|
.cx {
|
|
60
|
61
|
display: block;
|
|
61
|
62
|
}
|
|
|
@@ -73,9 +74,9 @@
|
|
73
|
74
|
<a class="nowPosition">通报批评统计</a>
|
|
74
|
75
|
</sapn>
|
|
75
|
76
|
</div>
|
|
76
|
|
- <div class="dhRight">
|
|
77
|
|
- <a href="" title="刷新"><i class="fa fa-refresh"></i></a>
|
|
78
|
|
- </div>
|
|
|
77
|
+ <div class="dhRight">
|
|
|
78
|
+ <a href="" title="刷新"><i class="fa fa-refresh"></i></a>
|
|
|
79
|
+ </div>
|
|
79
|
80
|
</div>
|
|
80
|
81
|
|
|
81
|
82
|
<div class="Content_box">
|
|
|
@@ -92,7 +93,7 @@
|
|
92
|
93
|
</li>
|
|
93
|
94
|
<li>
|
|
94
|
95
|
<a class="sc_btn btns db">搜索</a>
|
|
95
|
|
- <a class="sc_btn btns ">导出</a>
|
|
|
96
|
+ <a class="sc_btn btns ">导出</a>
|
|
96
|
97
|
</li>
|
|
97
|
98
|
</ul>
|
|
98
|
99
|
</div>
|
|
|
@@ -102,10 +103,10 @@
|
|
102
|
103
|
<table id="workorderlist" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
|
|
103
|
104
|
<thead>
|
|
104
|
105
|
<tr>
|
|
105
|
|
- <th data-field="F_WorkOrderId" data-align="center">单位名称</th>
|
|
106
|
|
- <th data-field="F_RegDate" data-align="center">处理总量</th>
|
|
107
|
|
- <th data-field="F_RegDate" data-align="center">通报量</th>
|
|
108
|
|
- <th data-field="F_RegDate" data-align="center">通报率</th>
|
|
|
106
|
+ <th data-field="deptname" data-align="center">单位名称</th>
|
|
|
107
|
+ <th data-field="count" data-align="center">处理总量</th>
|
|
|
108
|
+ <th data-field="noticecount" data-align="center">通报批评量</th>
|
|
|
109
|
+ <th data-field="noticerate" data-align="center">通报批评率</th>
|
|
109
|
110
|
</tr>
|
|
110
|
111
|
</thead>
|
|
111
|
112
|
</table>
|
|
|
@@ -114,18 +115,18 @@
|
|
114
|
115
|
|
|
115
|
116
|
</div>
|
|
116
|
117
|
</div>
|
|
117
|
|
-
|
|
|
118
|
+
|
|
118
|
119
|
<script>
|
|
119
|
120
|
initTable();
|
|
120
|
121
|
var keys;
|
|
121
|
122
|
$(document).ready(function () {
|
|
122
|
|
- //返回首页
|
|
123
|
|
- $('#ReIndex').click(function(){
|
|
124
|
|
- top.home_index();
|
|
125
|
|
- })
|
|
126
|
|
-
|
|
127
|
|
-
|
|
128
|
|
-
|
|
|
123
|
+ //返回首页
|
|
|
124
|
+ $('#ReIndex').click(function () {
|
|
|
125
|
+ top.home_index();
|
|
|
126
|
+ })
|
|
|
127
|
+
|
|
|
128
|
+
|
|
|
129
|
+
|
|
129
|
130
|
laydate.skin('blue');
|
|
130
|
131
|
laydate({
|
|
131
|
132
|
elem: '#startTimes',
|
|
|
@@ -148,8 +149,8 @@
|
|
148
|
149
|
//初始化表格,动态从服务器加载数据
|
|
149
|
150
|
$("#workorderlist").bootstrapTable({
|
|
150
|
151
|
method: "get", //使用get请求到服务器获取数据
|
|
151
|
|
-
|
|
152
|
|
- contentType: "application/x-www-form-urlencoded",striped: true, //表格显示条纹
|
|
|
152
|
+ url: huayi.config.callcenter_url + "WorkOrderReport/GetNotice",
|
|
|
153
|
+ contentType: "application/x-www-form-urlencoded", striped: true, //表格显示条纹
|
|
153
|
154
|
pagination: true, //启动分页
|
|
154
|
155
|
pageSize: 10, //每页显示的记录数
|
|
155
|
156
|
pageNumber: 1, //当前第几页
|
|
|
@@ -165,8 +166,8 @@
|
|
165
|
166
|
var param = {
|
|
166
|
167
|
page: params.pageNumber,
|
|
167
|
168
|
pagesize: params.pageSize,
|
|
168
|
|
- starttime: $("#startTimes").val(),
|
|
169
|
|
- endtime: $("#endTimes").val(),
|
|
|
169
|
+ start: $("#startTimes").val(),
|
|
|
170
|
+ end: $("#endTimes").val(),
|
|
170
|
171
|
token: $.cookie("token")
|
|
171
|
172
|
};
|
|
172
|
173
|
|
|
|
@@ -214,7 +215,7 @@
|
|
214
|
215
|
area: ['85%', '80%'], //宽高
|
|
215
|
216
|
});
|
|
216
|
217
|
}
|
|
217
|
|
-
|
|
|
218
|
+
|
|
218
|
219
|
</script>
|
|
219
|
220
|
</body>
|
|
220
|
221
|
|