d123 лет назад: 8
Родитель
Сommit
b558c89abc

+ 10 - 2
WebUI/CallCenterWeb.UI/CommonHtml/LDPS.html

@@ -22,13 +22,16 @@
22 22
 				padding: 0!important;
23 23
 				border: none!important;
24 24
 			}
25
+			.HT{
26
+				display: none;
27
+			}
25 28
 		</style>
26 29
 	</head>
27 30
 
28 31
 	<body>
29 32
 		<div class="Common">
30 33
 			<table>
31
-				<tr>
34
+				<tr class="HT">
32 35
 					<th class="Importent">批示人:</th>
33 36
 					<td> <input type="text" id="superuser"/></td>
34 37
 				</tr>
@@ -61,8 +64,13 @@
61 64
 		<script src="../css/laydate/laydate.js"></script>
62 65
 		<script src="../js/adjustHeight.js"></script>
63 66
 		<script>
64
-			var wid = helper.request.queryString("wid");			
67
+			var wid = helper.request.queryString("wid");
68
+			var type = helper.request.queryString("type");
69
+			console.log(type)
65 70
 			$(document).ready(function() {
71
+				if(type==1||type==2){
72
+					$(".HT").show();
73
+				}
66 74
 				XQ();
67 75
 				//上传附件
68 76
 				$("#scwj").click(function() {

+ 39 - 3
WebUI/CallCenterWeb.UI/CommonHtml/WorkDatil.html

@@ -104,6 +104,7 @@
104 104
 				<li itemtype="1" itemtype="1">监察意见</li>
105 105
 				<li itemtype="2" itemtype="2">领导批示</li>
106 106
 				<li itemtype="2" itemtype="2">市长批示</li>
107
+				<li itemtype="2" itemtype="2">回退信息</li>
107 108
 				<li itemtype="3" itemtype="3">办理情况</li>
108 109
 				<li itemtype="3" itemtype="3">延时审核</li>
109 110
 				<li itemtype="3" itemtype="3">退回审核</li>
@@ -264,6 +265,26 @@
264 265
 						</div>
265 266
 					</div>
266 267
 				</div>
268
+				<!--回退信息-->
269
+				<div class="complain  DCL">
270
+					<div style="width: 100%;padding: 10px;">
271
+						<div style="text-align: center; height: ">
272
+							<table class="Table" border="" cellspacing="0" cellpadding="0">
273
+								<theard>
274
+									<tr>
275
+										<td class="text-center" style="min-width:100px;">批示人</td>
276
+										<td class="text-center" style="min-width:100px;">批示内容</td>
277
+										<td class="text-center" style="min-width:100px;">批示时间</td>
278
+										<td class="text-center" style="min-width:100px;">附件</td>
279
+										<td class="text-center authority" style="min-width:100px;">操作</td>
280
+									</tr>
281
+								</theard>
282
+								<tbody class="HTXX">
283
+								</tbody>
284
+							</table>
285
+						</div>
286
+					</div>
287
+				</div>
267 288
 				<!--办理情况-->
268 289
 				<div class="complain  DCL ">
269 290
 					<div style="width: 100%;padding: 10px;">
@@ -738,7 +759,6 @@
738 759
 									//领导批示
739 760
 									$(".LDPS").empty();
740 761
 									$(result.data.psdata).each(function(i, n) {
741
-										
742 762
 										var str= '<tr>' +
743 763
 											'<td class="text-center">' + n.F_BatchReason + '</td>' +
744 764
 											'<td class="text-center">' + n.F_SuperOpinion + '</td>' +
@@ -771,7 +791,23 @@
771 791
 											'</tr>';
772 792
 										$(str).appendTo($(".SZPS"));
773 793
 									})
774
-									//修改监察意见
794
+									//回退信息
795
+									$(".HTXX").empty();
796
+									$(result.data.htdata).each(function(i, n) {
797
+										var str= '<tr>' +
798
+											'<td class="text-center">' + n.UserName + '</td>' +
799
+											'<td class="text-center">' + n.F_SuperOpinion + '</td>' +
800
+											'<td class="text-center">' + n.F_CreateTime + '</td>' +
801
+											'<td class="text-center">';
802
+										//办理情况附件
803
+										$(n.File).each(function(j, m) {
804
+											str += '<a style="margin-right:5px;" href="' + m.F_FileUrl + '" download="' + m.F_FileUrl + '">附件' + parseInt(j + 1) + '</a>';
805
+										})
806
+										str += '</td>' +
807
+											'<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>' +
808
+											'</tr>';
809
+										$(str).appendTo($(".HTXX"));
810
+									})
775 811
 
776 812
 								}
777 813
 							}
@@ -826,7 +862,7 @@
826 862
 //									title: '修改交办信息',
827 863
 //									area: ['58%', '60%'], //宽高
828 864
 //								})
829
-								window.location.href= "../CommonHtml/LDPS.html?wid=" + index; //iframe的url,no代表不显示滚动条
865
+								window.location.href= "../CommonHtml/LDPS.html?wid=" + index+"&type="+type; //iframe的url,no代表不显示滚动条
830 866
 						});
831 867
 							//办理情况
832 868
 							$(".BLQKS").click(function() {