|
|
@@ -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>'+
|