|
|
@@ -250,6 +250,7 @@
|
|
250
|
250
|
<tr>
|
|
251
|
251
|
<td class="text-center" style="min-width:100px;">办理人</td>
|
|
252
|
252
|
<td class="text-center" style="min-width:100px;">单位</td>
|
|
|
253
|
+ <td class="text-center" style="min-width:100px;">类型</td>
|
|
253
|
254
|
<td class="text-center" style="min-width:100px;">办理意见</td>
|
|
254
|
255
|
<td class="text-center" style="min-width:50px;">附件</td>
|
|
255
|
256
|
<td class="text-center authority" style="min-width:80px;">操作</td>
|
|
|
@@ -388,7 +389,7 @@
|
|
388
|
389
|
</ul>
|
|
389
|
390
|
<div class="clearfix wh_btn" style="width:100%;text-align:center;margin:10px 0;">
|
|
390
|
391
|
<input type="hidden" class="hidWid" />
|
|
391
|
|
- <input type="button" value="转媒体" class="release mediaTransfer" /> <input type="button" class="change release " value="修改"/> <input type="button" value="打印预览" class="print" /> <input type="button" value="关闭" class="closexq" />
|
|
|
392
|
+ <input type="button" value="转媒体" class="release mediaTransfer" /> <input type="button" class="change release authority" value="修改"/> <input type="button" value="打印预览" class="print" /> <input type="button" value="关闭" class="closexq" />
|
|
392
|
393
|
</div>
|
|
393
|
394
|
<input type="hidden" id="Change" />
|
|
394
|
395
|
</div>
|
|
|
@@ -510,10 +511,19 @@
|
|
510
|
511
|
$(".BLQK").empty();
|
|
511
|
512
|
//console.log(result.data.bldata);
|
|
512
|
513
|
$(result.data.bldata).each(function(i, n) {
|
|
513
|
|
-
|
|
|
514
|
+ var bval = n.F_Type;
|
|
|
515
|
+ switch(bval + '') {
|
|
|
516
|
+ case '1':
|
|
|
517
|
+ bval = '主办';
|
|
|
518
|
+ break;
|
|
|
519
|
+ case '2':
|
|
|
520
|
+ bval = '协办';
|
|
|
521
|
+ break;
|
|
|
522
|
+ }
|
|
514
|
523
|
htmls += '<tr>' +
|
|
515
|
524
|
'<td class="text-center">' + n.UserName + '</td>' +
|
|
516
|
525
|
'<td class="text-center">' + n.DeptName + '</td>' +
|
|
|
526
|
+ '<td class="text-center" data-formatter="shtype">' + bval + '</td>' +
|
|
517
|
527
|
'<td class="text-center">' + n.F_Result + '</td>' +
|
|
518
|
528
|
'<td class="text-center">';
|
|
519
|
529
|
//办理情况附件
|
|
|
@@ -702,17 +712,17 @@
|
|
702
|
712
|
}
|
|
703
|
713
|
|
|
704
|
714
|
//转媒体按钮显示或隐藏
|
|
705
|
|
- if(result.data.issend == 1 ) {
|
|
|
715
|
+ if(result.data.issend == '1' ) {
|
|
706
|
716
|
$(".mediaTransfer").show();
|
|
707
|
717
|
} else {
|
|
708
|
718
|
$(".mediaTransfer").hide();
|
|
709
|
719
|
}
|
|
710
|
720
|
|
|
711
|
721
|
//修改按钮显示或隐藏
|
|
712
|
|
- if(result.data.isedit == 1 ) {
|
|
713
|
|
- $(".change").show();
|
|
|
722
|
+ if(result.data.isedit == '1' ) {
|
|
|
723
|
+ $(".authority").show();
|
|
714
|
724
|
} else {
|
|
715
|
|
- $(".change").hide();
|
|
|
725
|
+ $(".authority").hide();
|
|
716
|
726
|
}
|
|
717
|
727
|
|
|
718
|
728
|
//修改交办意见
|