|
|
@@ -186,11 +186,16 @@
|
|
186
|
186
|
</table>
|
|
187
|
187
|
</div>
|
|
188
|
188
|
|
|
189
|
|
- <h5>四、公益型企业联动单位</h5>
|
|
|
189
|
+ <h5>四、公共事业企业联动单位</h5>
|
|
190
|
190
|
<div style="width: 100%;padding: 10px;">
|
|
191
|
191
|
<table id="workorderlist_4" class="tables" data-row-style="rowStyle" data-query-params="queryParams">
|
|
192
|
192
|
</table>
|
|
193
|
193
|
</div>
|
|
|
194
|
+ <h5>总计</h5>
|
|
|
195
|
+ <div style="width: 100%;padding: 10px;">
|
|
|
196
|
+ <table id="workorderlist_5" class="tables" data-row-style="rowStyle" data-query-params="queryParams">
|
|
|
197
|
+ </table>
|
|
|
198
|
+ </div>
|
|
194
|
199
|
<div class="footerDataStatistics">统计时段:00:00—23:59:59</div>
|
|
195
|
200
|
</div>
|
|
196
|
201
|
</div>
|
|
|
@@ -202,24 +207,86 @@
|
|
202
|
207
|
return index+1
|
|
203
|
208
|
}
|
|
204
|
209
|
},
|
|
205
|
|
- { field: 'deptname', title: '联动单位', align: 'center'},
|
|
206
|
|
- { field: 'Undertakers', title: '承办件', align: 'center'},
|
|
|
210
|
+ { field: 'deptname', title: '联动单位', align: 'center'
|
|
|
211
|
+
|
|
|
212
|
+ },
|
|
|
213
|
+ { field: 'Undertakers', title: '承办件', align: 'center',
|
|
|
214
|
+ formatter: function(value, row, index) {
|
|
|
215
|
+ return handleOrderList(value, row, 0);
|
|
|
216
|
+ }
|
|
|
217
|
+ },
|
|
207
|
218
|
{ field: 'Undertakersrate', title: '承办率', align: 'center'},
|
|
208
|
219
|
{ field: 'Undertakersscore', title: '得分(5分)', align: 'center'},
|
|
209
|
|
- { field: 'signfor', title: '及时签收件', align: 'center'},
|
|
|
220
|
+ { field: 'signfor', title: '及时签收件', align: 'center',
|
|
|
221
|
+ formatter: function(value, row, index) {
|
|
|
222
|
+ return handleOrderList(value, row, 1);
|
|
|
223
|
+ }
|
|
|
224
|
+ },
|
|
|
225
|
+ { field: 'oversignfor', title: '超时签收件 ', align: 'center',
|
|
|
226
|
+ formatter: function(value, row, index) {
|
|
|
227
|
+ return handleOrderList(value, row, 2);
|
|
|
228
|
+ }
|
|
|
229
|
+ },
|
|
210
|
230
|
{ field: 'signforrate', title: '及时签收率', align: 'center'},
|
|
211
|
231
|
{ field: 'signforscore', title: '得分(5分)', align: 'center'},
|
|
212
|
|
- { field: 'overdue', title: '按时反馈件', align: 'center'},
|
|
|
232
|
+ { field: 'overdue', title: '按时反馈件', align: 'center',
|
|
|
233
|
+ formatter: function(value, row, index) {
|
|
|
234
|
+ return handleOrderList(value, row, 3);
|
|
|
235
|
+ }
|
|
|
236
|
+ },
|
|
|
237
|
+ { field: 'overfeedback', title: '超时反馈件', align: 'center',
|
|
|
238
|
+ formatter: function(value, row, index) {
|
|
|
239
|
+ return handleOrderList(value, row, 4);
|
|
|
240
|
+ }
|
|
|
241
|
+ },
|
|
213
|
242
|
{ field: 'overduerate', title: '按时反馈率', align: 'center'},
|
|
214
|
243
|
{ field: 'overduescore', title: '得分(15分)', align: 'center'},
|
|
215
|
|
- { field: 'conclude', title: '办结件', align: 'center'},
|
|
|
244
|
+ { field: 'conclude', title: '办结件', align: 'center',
|
|
|
245
|
+ formatter: function(value, row, index) {
|
|
|
246
|
+ return handleOrderList(value, row, 5);
|
|
|
247
|
+ }
|
|
|
248
|
+ },
|
|
|
249
|
+ { field: 'noconclude', title: '未办结件', align: 'center',
|
|
|
250
|
+ formatter: function(value, row, index) {
|
|
|
251
|
+ return handleOrderList(value, row, 6);
|
|
|
252
|
+ }
|
|
|
253
|
+ },
|
|
|
254
|
+
|
|
216
|
255
|
{ field: 'unsuccessfulrate', title: '办结率', align: 'center'},
|
|
217
|
|
- { field: 'unsuccessfulscore', title: '办结得分', align: 'center'},
|
|
218
|
|
- { field: 'one', title: '一次办结件', align: 'center'},
|
|
|
256
|
+ { field: 'unsuccessfulscore', title: '办结得分(10分)', align: 'center'},
|
|
|
257
|
+ { field: 'one', title: '一次办结件', align: 'center',
|
|
|
258
|
+ formatter: function(value, row, index) {
|
|
|
259
|
+ return handleOrderList(value, row, 7);
|
|
|
260
|
+ }
|
|
|
261
|
+ },
|
|
|
262
|
+ { field: 'noone', title: '非一次办结件', align: 'center',
|
|
|
263
|
+ formatter: function(value, row, index) {
|
|
|
264
|
+ return handleOrderList(value, row, 8);
|
|
|
265
|
+ }
|
|
|
266
|
+ },
|
|
219
|
267
|
{ field: 'onerate', title: '一次办结率', align: 'center'},
|
|
220
|
268
|
{ field: 'onescore', title: '得分(15分)', align: 'center'},
|
|
221
|
|
- { field: 'noexamine', title: '不计入考核件', align: 'center'},
|
|
222
|
|
- { field: 'satisfied', title: '满意件', align: 'center'},
|
|
|
269
|
+ { field: 'noexamine', title: '不计入考核件', align: 'center',
|
|
|
270
|
+ formatter: function(value, row, index) {
|
|
|
271
|
+ return handleOrderList(value, row, 9);
|
|
|
272
|
+ }
|
|
|
273
|
+ },
|
|
|
274
|
+
|
|
|
275
|
+ { field: 'review', title: '评议件', align: 'center',
|
|
|
276
|
+ formatter: function(value, row, index) {
|
|
|
277
|
+ return handleOrderList(value, row, 10);
|
|
|
278
|
+ }
|
|
|
279
|
+ },
|
|
|
280
|
+ { field: 'satisfied', title: '满意件', align: 'center',
|
|
|
281
|
+ formatter: function(value, row, index) {
|
|
|
282
|
+ return handleOrderList(value, row, 11);
|
|
|
283
|
+ }
|
|
|
284
|
+ },
|
|
|
285
|
+ { field: 'nosatisfied', title: '不满意件', align: 'center',
|
|
|
286
|
+ formatter: function(value, row, index) {
|
|
|
287
|
+ return handleOrderList(value, row, 12);
|
|
|
288
|
+ }
|
|
|
289
|
+ },
|
|
223
|
290
|
{ field: 'satisfiedrates', title: '满意率', align: 'center'},
|
|
224
|
291
|
{ field: 'satisfiedscore', title: '得分(50分)', align: 'center'},
|
|
225
|
292
|
{ field: 'total', title: '总分', align: 'center'},
|
|
|
@@ -276,7 +343,38 @@
|
|
276
|
343
|
exportParams.isdc = true
|
|
277
|
344
|
exportFileFun('DataAssessment/GetExamine',exportParams)
|
|
278
|
345
|
});
|
|
279
|
|
-
|
|
|
346
|
+ function handleOrderList(val,row,tab){
|
|
|
347
|
+ if (row.deptname !=='合计'&&row.deptname !=='总计') {
|
|
|
348
|
+ return '<div class="imgs" ><a class="" onclick="viewList(\'' + row.deptid + '\', \''+tab+'\')" >' + val +
|
|
|
349
|
+ '</a></div>'
|
|
|
350
|
+ }else{
|
|
|
351
|
+ return val
|
|
|
352
|
+ }
|
|
|
353
|
+
|
|
|
354
|
+ }
|
|
|
355
|
+ // 查看列表
|
|
|
356
|
+ function viewList(deptid, tab) {
|
|
|
357
|
+ console.log(deptid, tab)
|
|
|
358
|
+ var deptid = encodeURIComponent(deptid)
|
|
|
359
|
+ starttime = $("#squeryTime").val();
|
|
|
360
|
+ endtime = $("#equeryTime").val();
|
|
|
361
|
+ source = $("#source").val();
|
|
|
362
|
+ source = encodeURIComponent(source);
|
|
|
363
|
+ starttime = encodeURIComponent(starttime);
|
|
|
364
|
+ if (endtime.length > 0 && endtime.length <= 10) {
|
|
|
365
|
+ endtime = encodeURIComponent(endtime + " 23:59:59");
|
|
|
366
|
+ } else {
|
|
|
367
|
+ endtime = encodeURIComponent(endtime);
|
|
|
368
|
+ }
|
|
|
369
|
+
|
|
|
370
|
+ layer.open({
|
|
|
371
|
+ type: 2,
|
|
|
372
|
+ content: "./comhtml/reportOrderList.html?deptid=" + deptid + "&tab=" + tab +
|
|
|
373
|
+ "&starttime=" + starttime + "&endtime=" + endtime+ "&source=" + source, //iframe的url,no代表不显示滚动条
|
|
|
374
|
+ title: '考核统计分析列表',
|
|
|
375
|
+ area: ['90%', '90%'], //宽高
|
|
|
376
|
+ });
|
|
|
377
|
+ }
|
|
280
|
378
|
//表格
|
|
281
|
379
|
function initTable() {
|
|
282
|
380
|
var dataParams = {
|
|
|
@@ -301,7 +399,7 @@
|
|
301
|
399
|
var resultData_2 = []
|
|
302
|
400
|
var resultData_3 = []
|
|
303
|
401
|
var resultData_4 = []
|
|
304
|
|
-
|
|
|
402
|
+ var resultData_5 = []
|
|
305
|
403
|
$(".statisticalPeriod").text(returnValue.strdate + " 至 " + returnValue.edate)
|
|
306
|
404
|
$("#titleText").text("12345联动服务工作" + returnValue.month + "月份考核数据表")
|
|
307
|
405
|
|
|
|
@@ -314,12 +412,16 @@
|
|
314
|
412
|
resultData_3.push(v)
|
|
315
|
413
|
} else if (v.category === 4) {
|
|
316
|
414
|
resultData_4.push(v)
|
|
|
415
|
+ }else {
|
|
|
416
|
+ resultData_5.push(v)
|
|
317
|
417
|
}
|
|
318
|
418
|
})
|
|
319
|
419
|
$('#workorderlist_1').bootstrapTable('load', resultData_1);
|
|
320
|
420
|
$('#workorderlist_2').bootstrapTable('load', resultData_2);
|
|
321
|
421
|
$('#workorderlist_3').bootstrapTable('load', resultData_3);
|
|
322
|
422
|
$('#workorderlist_4').bootstrapTable('load', resultData_4);
|
|
|
423
|
+ $('#workorderlist_5').bootstrapTable('load', resultData_5);
|
|
|
424
|
+
|
|
323
|
425
|
}
|
|
324
|
426
|
});
|
|
325
|
427
|
$('#workorderlist_1').bootstrapTable('destroy').bootstrapTable({
|
|
|
@@ -342,6 +444,11 @@
|
|
342
|
444
|
pagination: false,
|
|
343
|
445
|
columns:tableColumns
|
|
344
|
446
|
});
|
|
|
447
|
+ $('#workorderlist_5').bootstrapTable('destroy').bootstrapTable({
|
|
|
448
|
+ striped: true,
|
|
|
449
|
+ pagination: false,
|
|
|
450
|
+ columns:tableColumns
|
|
|
451
|
+ });
|
|
345
|
452
|
}
|
|
346
|
453
|
// 树形下拉开始
|
|
347
|
454
|
function bindtree() {
|