|
|
@@ -225,6 +225,18 @@ function load() {
|
|
225
|
225
|
'</tr>';
|
|
226
|
226
|
})
|
|
227
|
227
|
$(htmlss).appendTo($(".HGXX"));
|
|
|
228
|
+ //回退信息
|
|
|
229
|
+ $(".HTXX").empty();
|
|
|
230
|
+ $(result.data.htdata).each(function(i, n) {
|
|
|
231
|
+ var str = '<tr>' +
|
|
|
232
|
+ '<td class="text-center">' + n.UserName + '</td>' +
|
|
|
233
|
+ '<td class="text-center">' + n.F_SuperOpinion + '</td>' +
|
|
|
234
|
+ '<td class="text-center">' + n.F_CreateTime + '</td>'
|
|
|
235
|
+ str += '</td>' +
|
|
|
236
|
+ '<td class="text-center authority"><botton class="btns LDPSS " superuser="' + n.F_BatchReason + '" superopinion="' + n.F_SuperOpinion + '" type="' + n.F_Type + '" index="' + n.F_Id + '">修改</botton></td>' +
|
|
|
237
|
+ '</tr>';
|
|
|
238
|
+ $(str).appendTo($(".HTXX"));
|
|
|
239
|
+ })
|
|
228
|
240
|
//交办信息
|
|
229
|
241
|
var jbxx = '';
|
|
230
|
242
|
$(".JBXX").empty();
|
|
|
@@ -359,7 +371,23 @@ function load() {
|
|
359
|
371
|
'</tr>';
|
|
360
|
372
|
$(html).appendTo($("#BLGC_"));
|
|
361
|
373
|
});
|
|
362
|
|
-
|
|
|
374
|
+ //回退信息
|
|
|
375
|
+ $(".HTXX").empty();
|
|
|
376
|
+ $(result.data.htdata).each(function(i, n) {
|
|
|
377
|
+ var str = '<tr>' +
|
|
|
378
|
+ '<td class="text-center">' + n.UserName + '</td>' +
|
|
|
379
|
+ '<td class="text-center">' + n.F_SuperOpinion + '</td>' +
|
|
|
380
|
+ '<td class="text-center">' + n.F_CreateTime + '</td>'
|
|
|
381
|
+// '<td class="text-center">';
|
|
|
382
|
+// //办理情况附件
|
|
|
383
|
+// $(n.File).each(function(j, m) {
|
|
|
384
|
+// str += '<a style="margin-right:5px;" href="' + m.F_FileUrl + '" download="' + m.F_FileUrl + '">' + m.F_FileName.substring(19) + '</a>';
|
|
|
385
|
+// })
|
|
|
386
|
+ str += '</td>' +
|
|
|
387
|
+ '<td class="text-center authority"><botton class="btns HtxxBtn " superuser="' + n.F_BatchReason + '" superopinion="' + n.F_SuperOpinion + '" type="' + n.F_Type + '" index="' + n.F_Id + '">修改</botton></td>' +
|
|
|
388
|
+ '</tr>';
|
|
|
389
|
+ $(str).appendTo($(".HTXX"));
|
|
|
390
|
+ })
|
|
363
|
391
|
//领导批示
|
|
364
|
392
|
$(".LDPS").empty();
|
|
365
|
393
|
$(result.data.psdata).each(function(i, n) {
|
|
|
@@ -430,6 +458,11 @@ function load() {
|
|
430
|
458
|
// });
|
|
431
|
459
|
window.location.href = "../CommonHtml/XGHF.html?wid=" + index; //iframe的url,no代表不显示滚动条
|
|
432
|
460
|
});
|
|
|
461
|
+ //修改回退信息
|
|
|
462
|
+ $(".HtxxBtn").click(function() {
|
|
|
463
|
+ var index = $(this).attr('index');
|
|
|
464
|
+ window.location.href = "../CommonHtml/BackDatil.html?wid=" + index+'&tab=0'
|
|
|
465
|
+ })
|
|
433
|
466
|
//领导批示
|
|
434
|
467
|
$(".LDPSS").click(function() {
|
|
435
|
468
|
var index = $(this).attr('index'); //批示ID
|