liuyifan 5 lat temu
rodzic
commit
b0437feb9c

+ 2 - 1
WebUI/CallCenterWeb.UI/Business/appealOrder.html

@@ -60,8 +60,9 @@
60 60
 					<thead>
61 61
 						<tr>
62 62
 							<th data-field="state" data-checkbox="true" data-align="center"></th>
63
+							<th data-field="F_WorkOrderId" data-align="center">工单编号</th>
63 64
 							<th data-field="NoticeDeptName" data-align="center">申诉部门</th>
64
-							<th data-field="F_NoticeInfo" data-align="center">通报批评内容</th>
65
+							<th data-field="F_NoticeInfo" data-align="center">申诉内容</th>
65 66
 							<th data-field="F_Remark" data-align="center">申诉详情</th>
66 67
 							<th data-field="F_CreateTime" data-align="center">申诉时间</th>
67 68
 							<th data-field="F_State" data-align="center" data-formatter="formatterAppealState">申诉是否通过</th>

+ 29 - 1
WebUI/CallCenterWeb.UI/CommonHtml/appealOrderDetails.html

@@ -121,10 +121,18 @@
121 121
 			<div class="container-fluid wrapper-content animated fadeInRight">
122 122
 				<table class="table table-bordered table-condensed">
123 123
 					<tr>
124
+						<td width="100">工单编号</td>
125
+						<td colspan="3"> <input type="text" id="detailsWorkOrderNumber" readonly="readonly" /></td>
126
+					</tr>
127
+					<tr>
124 128
 						<td width="100">申诉部门</td>
125 129
 						<td colspan="3"> <input type="text" id="detailsDepartment" readonly="readonly" /></td>
126 130
 					</tr>
127 131
 					<tr>
132
+						<td width="100">申诉信息</td>
133
+						<td colspan="3"> <input type="text" id="detailsComplaintInformation" readonly="readonly" /></td>
134
+					</tr>
135
+					<tr>
128 136
 						<td width="100">申诉原因</td>
129 137
 						<td colspan="3"> <input type="text" id="detailsAppealReason" readonly="readonly" /></td>
130 138
                     </tr>
@@ -185,6 +193,7 @@
185 193
 						success:function(res){
186 194
 							if(res.state.toLowerCase()=='success'){
187 195
 								var con = res.data;
196
+                                $("#detailsWorkOrderNumber").val(con.dt[0].F_WorkOrderId); //工单编号
188 197
                                 $("#detailsDepartment").val(con.NoticeDeptName); //申诉部门
189 198
                                 $("#detailsAppealReason").val(con.dt[0].F_NoticeInfo); //申诉原因
190 199
                                 $("#detailsOtherReason").val(con.dt[0].F_Content); //其他原因
@@ -197,7 +206,26 @@
197 206
                                     $("#detailsState").val("通过");
198 207
                                 } else if (con.dt[0].F_State === 2) {
199 208
                                     $("#detailsState").val("退回");
200
-                                }
209
+								}
210
+								//申诉信息分类
211
+								if (con.dt[0].F_Type === 1) {
212
+									$("#detailsComplaintInformation").val("办理情况");
213
+								} else if (con.dt[0].F_Type === 2) {
214
+									$("#detailsComplaintInformation").val("查收情况");
215
+								} else if (con.dt[0].F_Type === 3) {
216
+									$("#detailsComplaintInformation").val("办理规范");
217
+								} else if (con.dt[0].F_Type === 4) {
218
+									$("#detailsComplaintInformation").val("回访情况");
219
+								} else if (con.dt[0].F_Type === 5) {
220
+									$("#detailsComplaintInformation").val("退回情况");
221
+								} else if (con.dt[0].F_Type === 6) {
222
+									$("#detailsComplaintInformation").val("知识库索引更新不及时");
223
+								} else if (con.dt[0].F_Type === 7) {
224
+									$("#detailsComplaintInformation").val("知识库纠错情况");
225
+								} else if (con.dt[0].F_Type === 8) {
226
+									$("#detailsComplaintInformation").val("办理情况");
227
+								} 
228
+
201 229
 								$(con.dt[0].File).each(function(k,q){
202 230
                                     var size= (q.F_Size/1024).toFixed(2)
203 231
                                     var strs='<tr>'+

+ 2 - 2
WebUI/CallCenterWeb.UI/js/notification/appealOrder.js

@@ -182,7 +182,7 @@ function  btn_checkDetails (ids) {
182 182
         type: 2,
183 183
         title: '查看详情',
184 184
         maxmin: true, //开启最大化最小化按钮
185
-        area: ['40%', '65%'],
185
+        area: ['40%', '75%'],
186 186
         content: '../CommonHtml/appealOrderDetails.html?ids=' + did
187 187
     });
188 188
 }
@@ -192,7 +192,7 @@ function btn_dealWith(ids) {
192 192
     did = ids.toString();
193 193
     layer.open({
194 194
         type: 2,
195
-        title: '申诉信息',
195
+        title: '审核申诉',
196 196
         maxmin: true, //开启最大化最小化按钮
197 197
         area: ['40%', '30%'],
198 198
         content: '../CommonHtml/dealWithAppeal.html?ids=' + did