liuyifan 4 lat temu
rodzic
commit
add787c278

+ 0 - 1
WebUI/CallCenterWeb.UI/Appeal/AddAppeal.html

@@ -277,7 +277,6 @@
277 277
     <script src="../js/adjustHeight.js"></script>
278 278
     <script src="../js/zTree/jquery.ztree.core.js"></script>
279 279
     <script src="../js/appeal/mapIndex.js"></script>
280
-    <!-- <script src="../js/appeal/index1.js"></script> -->
281 280
     <script src="../js/ztreeSelect.js"></script>
282 281
     <script>
283 282
         var submit;

+ 6 - 0
WebUI/CallCenterWeb.UI/Appeal/Lawsuit.html

@@ -290,6 +290,9 @@
290 290
                                     <th data-field="F_ComTitle" data-formatter="GetCont" data-align="center">
291 291
                                         诉求标题
292 292
                                     </th>
293
+                                    <th data-field="F_ComContent" data-formatter="GetCont" data-align="center">
294
+                                        来电内容
295
+                                    </th>
293 296
                                     <th data-field="DeptName" data-align="center">
294 297
                                         承办单位
295 298
                                     </th>
@@ -308,6 +311,9 @@
308 311
                                     <th data-field="LimitTime" data-formatter="BanTime" data-align="center">
309 312
                                         办理时限
310 313
                                     </th>
314
+                                    <th data-field="F_Result" data-formatter="GetCont" data-align="center">
315
+                                        办理结果
316
+                                    </th>
311 317
                                     <th data-field="FilePath" data-formatter="setCode" data-align="center">
312 318
                                         录音
313 319
                                     </th>

+ 6 - 1
WebUI/CallCenterWeb.UI/Appeal/comprehensiveMenu.html

@@ -256,13 +256,18 @@
256 256
                                     <th data-field="F_ComTitle" data-align="center">
257 257
                                         诉求标题
258 258
                                     </th>
259
-                                    <th data-field="DeptName" data-align="center">承办单位</th>
259
+                                    <th data-field="DeptName" data-align="center">
260
+                                        承办单位
261
+                                    </th>
260 262
                                     <th data-field="F_ComContent" data-align="center">
261 263
                                         来电内容
262 264
                                     </th>
263 265
                                     <th data-field="F_Result" data-align="center">
264 266
                                         办理结果
265 267
                                     </th>
268
+                                    <th data-field="FilePath" data-formatter="setCode" data-align="center">
269
+                                        录音
270
+                                    </th>
266 271
                                     <!-- <th data-field="F_WorkOrderId" data-formatter="Dispose" data-align="center">
267 272
                                         操作
268 273
                                     </th> -->

+ 6 - 6
WebUI/CallCenterWeb.UI/CommonHtml/AddAppeal.html

@@ -305,7 +305,7 @@
305 305
     <script src="../css/laydate/laydate.js"></script>
306 306
     <script src="../js/bootstrap-select.js"></script>
307 307
     <script src="../js/adjustHeight.js"></script>
308
-    <script src="../js/appeal/index.js"></script>
308
+    <script src="../js/appeal/mapIndex.js"></script>
309 309
     <script src="../js/zTree/jquery.ztree.core.js"></script>
310 310
     <script src="../js/ztreeSelect.js"></script>
311 311
     <script>
@@ -314,6 +314,7 @@
314 314
         var IsExamine = helper.request.queryString("IsExamine"); // 营商审核:0待审转办未审核、1待审转办已审核
315 315
         var isshMultimedia = helper.request.queryString("isshMultimedia"); // 多媒体审核:0待审转办1审核未通过2审核员待审核
316 316
         var roleCode = $.cookie("code");
317
+        var organizerSelectedObj = {}; // 承办单位选中数据
317 318
         var submit;
318 319
         $(document).ready(function () {
319 320
             QY($("#sourcearea"));
@@ -366,7 +367,6 @@
366 367
             }
367 368
 
368 369
             // 多媒体审核:0待审转办1审核未通过2审核员待审核
369
-            console.log("isshMultimedia", isshMultimedia)
370 370
             if (String(isshMultimedia) === "0" || String(isshMultimedia) === "1") {
371 371
                 $(".auditMultimediaBtn").hide(); // 多媒体审核
372 372
                 $(".JB").hide(); // 审核通过
@@ -473,7 +473,7 @@
473 473
                     type: 2,
474 474
                     content: "./auditMultimedia.html?wid=" + wid, //iframe的url,no代表不显示滚动条
475 475
                     title: "审核",
476
-                    area: ["50%", "50%"], //宽高
476
+                    area: ["80%", "80%"], //宽高
477 477
                 });
478 478
             });
479 479
 
@@ -742,7 +742,6 @@
742 742
             var manyUnitsDictionary = [];
743 743
             var manyUnitsData = $("#jbSelect").val()
744 744
             var manyUnitsDataObject = {}
745
-            console.log("manyUnitsData", manyUnitsData, typeof(manyUnitsData))
746 745
             if (manyUnitsData && manyUnitsData.length > 0) {
747 746
                 for (var i=0; i<manyUnitsData.length; i++) {
748 747
                     manyUnitsDataObject = {
@@ -1212,7 +1211,7 @@
1212 1211
                     $("<option value=''>请选择</option>").appendTo(obj);
1213 1212
                     $(content).each(function (i, n) {
1214 1213
                         if (String(n.F_IsDept) === "1") {
1215
-                            $("<option value='" + n.F_DeptId + "' style='color: red !important'>" + n.F_DeptName + "</option>").appendTo(
1214
+                            $("<option value='" + n.F_DeptId + "' data-text='" + n.F_DeptName + "' style='color: red !important'>" + n.F_DeptName + "</option>").appendTo(
1216 1215
                             obj);
1217 1216
 
1218 1217
                         } else if (String(n.F_IsDept) === "2") {
@@ -1398,13 +1397,14 @@
1398 1397
         }
1399 1398
 
1400 1399
         $("#jbSelect").on("changed.bs.select", function(e, clickedIndex, isSelected, previousValue) {
1400
+            organizerSelectedObj[String(e.target[clickedIndex].value)] = e.target[clickedIndex].label
1401 1401
             $(".workcontentManyUnits").remove();
1402 1402
             var data = $("#jbSelect").val().reverse();
1403 1403
             var html = '';
1404 1404
             if (data.length > 0) {
1405 1405
                 for (var i=0; i < data.length; i++) {
1406 1406
                     html = '<tr class="workcontentManyUnits">' +
1407
-                        '<th class="Importent">工单内容:</th>' +
1407
+                        '<th class="Importent">' + organizerSelectedObj[String(data[i])] + ':</th>' +
1408 1408
                         '<td colspan="7">' +
1409 1409
                         '<textarea data-adaptheight id="workcontent' +
1410 1410
                         data[i] +

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

@@ -413,8 +413,8 @@
413 413
                         <tr class="bor_bootm">
414 414
                             <th>事件地址:</th>
415 415
                             <td colspan="7">
416
-                                <span class="AreaName" style="margin-right: 10px;"></span><span
417
-                                    class='F_SourceAddress'>563 4494</span>
416
+                                <span class="AreaName" style="margin-right: 10px;"></span>
417
+                                <span class='F_SourceAddress'>563 4494</span>
418 418
                             </td>
419 419
                         </tr>
420 420
                         <tr>
@@ -936,6 +936,7 @@
936 936
                                     } else {
937 937
                                         $('.F_Content').text(Data[0].F_Content);
938 938
                                     }
939
+                                    $(".AreaName").text(Data[0].AreaName);
939 940
                                     $('.F_SourceAddress').text(Data[0].F_SourceAddress);
940 941
                                     $(".store_Lng").val(Data[0].F_Longitude);
941 942
                                     $(".store_Lat").val(Data[0].F_Latitude);
@@ -956,7 +957,6 @@
956 957
                                     $(".subjectWords").text(Data[0].KeyName);
957 958
                                     $(".LX").text(Data[0].TypeName1);
958 959
                                     $(".Result").text(Data[0].F_Result);
959
-                                    $(".AreaName").text(Data[0].AreaName);
960 960
                                     $(".handlingUnit").text(Data[0].deptname);
961 961
                                     isProtect = result.data.data[0].F_IsProtect
962 962
                                     if (Data[0].F_CusPhone) {

+ 1 - 1
WebUI/CallCenterWeb.UI/CommonHtml/XGwordel.html

@@ -170,7 +170,7 @@
170 170
 		<script src="https://api.map.baidu.com/api?v=2.0&ak=ZG4gLQZUD6Eq1K11cqlYAR4by8CKgLyu&callback=mapinit"></script>
171 171
 	    <script src="../css/laydate/laydate.js"></script>
172 172
 	    <script src="../js/adjustHeight.js"></script>
173
-	    <script src="../js/appeal/index.js"></script>
173
+	    <script src="../js/appeal/mapIndex.js"></script>
174 174
 		<script>
175 175
 			var wid = helper.request.queryString("wid");
176 176
 			var submit;

+ 80 - 19
WebUI/CallCenterWeb.UI/CommonHtml/auditMultimedia.html

@@ -17,23 +17,50 @@
17 17
 
18 18
 <body>
19 19
     <div class="Common">
20
-        <table>
21
-            <tr class="nexttype-wrapper">
22
-                <th>是否通过:</th>
23
-                <td>
24
-                    <select class="form-control" id='nexttype'>
25
-                        <option value="0">审核通过</option>
26
-                        <option value="1">审核不通过</option>
27
-                    </select>
28
-                </td>
29
-            </tr>
30
-            <tr>
31
-                <th>审核说明:</th>
32
-                <td colspan="7"><textarea class="form-control" data-adaptheight id="cbreason" name="" rows="4" cols=""></textarea></td>
33
-            </tr>
34
-        </table>
35
-        <div class="btn_box">
36
-            <button class="btns BC">保存</button>
20
+        <div class="complain">
21
+            <div style="width: 100%; padding: 10px">
22
+                <table id="tableList" data-row-style="rowStyle" data-query-params="queryParams"
23
+                    data-pagination="true">
24
+                    <thead>
25
+                        <tr>
26
+                            <th data-formatter="serialNumber" data-align="center">
27
+                                序号
28
+                            </th>
29
+                            <th data-field="AuditUser" data-align="center">
30
+                                审核人
31
+                            </th>
32
+                            <th data-field="DeptNames" data-align="center">
33
+                                承办单位
34
+                            </th>
35
+                            <th data-field="F_Result" data-align="center">
36
+                                审核说明
37
+                            </th>
38
+                        </tr>
39
+                    </thead>
40
+                    <tbody class="list"></tbody>
41
+                </table>
42
+            </div>
43
+        </div>
44
+        <div>
45
+            <table>
46
+                <tr class="nexttype-wrapper">
47
+                    <th>是否通过:</th>
48
+                    <td>
49
+                        <select class="form-control" id='nexttype'>
50
+                            <option value="">请选择</option>
51
+                            <option value="0">审核通过</option>
52
+                            <option value="1">审核不通过</option>
53
+                        </select>
54
+                    </td>
55
+                </tr>
56
+                <tr>
57
+                    <th>审核说明:</th>
58
+                    <td colspan="7"><textarea class="form-control" data-adaptheight id="cbreason" name="" rows="4" cols=""></textarea></td>
59
+                </tr>
60
+            </table>
61
+            <div class="btn_box">
62
+                <button class="btns BC">保存</button>
63
+            </div>    
37 64
         </div>
38 65
     </div>
39 66
     <script src="../js/adjustHeight.js"></script>
@@ -42,13 +69,14 @@
42 69
         var wid = helper.request.queryString("wid");
43 70
         var nexttype = helper.request.queryString("nexttype");
44 71
         $(document).ready(function () {
45
-            if (String(nexttype) === "1") {
46
-                // $(".nexttype-wrapper").hide()
72
+            if (nexttype) {
47 73
                 $("#nexttype").val(nexttype).attr("disabled", true)
48 74
             }
49 75
             $('.BC').click(function () {
50 76
                 JA();
51 77
             })
78
+            // 审核信息
79
+            initTable();
52 80
         });
53 81
 
54 82
         // 保存
@@ -69,6 +97,39 @@
69 97
                 }
70 98
             })
71 99
         }
100
+
101
+        // 审核信息
102
+        function initTable() {
103
+            $.ajax({
104
+                url: huayi.config.callcenter_url + 'WorkOrder/GetWorkOrderNew',
105
+                type: 'get',
106
+                data: {
107
+                    workorderid: wid,
108
+                    type: 13,
109
+                    token: $.cookie("token")
110
+                },
111
+                dataType: "json",
112
+                async: true,
113
+                success: function (result) {
114
+                    if (result.state.toLowerCase() == "success") {
115
+                        var resultData = result.data
116
+                        console.log("resultData", resultData)
117
+                        $('#tableList').bootstrapTable('load', resultData);
118
+                    }
119
+                    //异步获取数据
120
+                }
121
+            });
122
+            $('#tableList').bootstrapTable('destroy').bootstrapTable({
123
+                striped: true,
124
+                pagination: false,
125
+            });
126
+        }
127
+
128
+        //编号
129
+        function serialNumber(val, row, index) {
130
+            return index + 1;
131
+        }
132
+
72 133
     </script>
73 134
 </body>
74 135
 

+ 6 - 3
WebUI/CallCenterWeb.UI/CommonHtml/shth.html

@@ -48,6 +48,7 @@
48 48
 		<script>
49 49
 			var wid = helper.request.queryString("wid");
50 50
 			var state;
51
+            var zb = 0; // 默认0,同意并转办1
51 52
 			$(document).ready(function() {
52 53
                 HQ();
53 54
 				$(".Agree").click(function(){
@@ -61,22 +62,24 @@
61 62
                 // 同意并转办
62 63
                 $(".agreeTransfer").click(function() {
63 64
 					state=1;
64
-					JA("agreeTransfer");
65
+                    zb = 1
66
+					JA();
65 67
                 })
66 68
 			})
67 69
             
68 70
 			//批示
69
-			function JA(buttonType) {
71
+			function JA() {
70 72
 				$.post(huayi.config.callcenter_url + 'WorkOrder/AuditRebackWorkOrder', {
71 73
 					workorderid: wid,
72 74
 					reason: $("#Reason").val(),
73 75
 					state: state,
74 76
 					rebackid: $("#delayid").val(),
77
+                    zb: zb,
75 78
 					"token": $.cookie("token")
76 79
 				}, function(result) {
77 80
 					result = JSON.parse(result);
78 81
 					if(result.state.toLowerCase() == "success") {
79
-                        if (String(buttonType) === "agreeTransfer") {
82
+                        if (String(zb) === "1") {
80 83
                             //编辑
81 84
                             layer.open({
82 85
                                 type: 2,

+ 23 - 38
WebUI/CallCenterWeb.UI/MultimediaWorkOrder/auditorsAuditedMedia.html

@@ -236,9 +236,9 @@
236 236
             $(ele).addClass("success"); //添加当前选中的 success样式用于区别
237 237
         });
238 238
 
239
-        //获取查询信息
239
+        // 获取查询信息
240 240
         function load() {
241
-            //坐席
241
+            // 坐席
242 242
             var usercodeID = "";
243 243
             var usercode_ = $("#ZX").val(); //坐席
244 244
             if (usercode_ != null) {
@@ -250,7 +250,7 @@
250 250
             } else {
251 251
                 usercodeID = "";
252 252
             }
253
-            //      	调度员
253
+            // 调度员
254 254
             var ddusercodeID = "";
255 255
             var ddusercode_ = $("#yardman").val(); //坐席
256 256
             if (ddusercode_ != null) {
@@ -262,9 +262,9 @@
262 262
             } else {
263 263
                 ddusercodeID = "";
264 264
             }
265
-            //先销毁表格
265
+            // 先销毁表格
266 266
             $("#orderlist").bootstrapTable("destroy");
267
-            //初始化表格,动态从服务器加载数据
267
+            // 初始化表格,动态从服务器加载数据
268 268
             $("#orderlist").bootstrapTable({
269 269
                 method: "get", //使用get请求到服务器获取数据
270 270
                 url: huayi.config.callcenter_url + "WorkOrder/GetLDDealList", //获取数据的Servlet地址
@@ -501,7 +501,7 @@
501 501
                 }
502 502
             );
503 503
         }
504
-        ////删除
504
+        // 删除
505 505
         function withdraw(str) {
506 506
             layer.confirm(
507 507
                 "确定撤回?", {
@@ -525,7 +525,7 @@
525 525
                 }
526 526
             );
527 527
         }
528
-        //提交
528
+        // 提交
529 529
         function tj(str) {
530 530
             layer.confirm(
531 531
                 "确定要提交工单么?", {
@@ -551,7 +551,7 @@
551 551
                 }
552 552
             );
553 553
         }
554
-        //交办
554
+        // 交办
555 555
         function jb(str) {
556 556
             layer.open({
557 557
                 type: 2,
@@ -561,7 +561,7 @@
561 561
             });
562 562
         }
563 563
 
564
-        //领导批示
564
+        // 领导批示
565 565
         function lader(str) {
566 566
             layer.open({
567 567
                 type: 2,
@@ -570,7 +570,7 @@
570 570
                 area: ["60%", "80%"], //宽高
571 571
             });
572 572
         }
573
-        //市长批示
573
+        // 市长批示
574 574
         function city(str) {
575 575
             layer.open({
576 576
                 type: 2,
@@ -579,7 +579,7 @@
579 579
                 area: ["60%", "80%"], //宽高
580 580
             });
581 581
         }
582
-        //办理
582
+        // 办理
583 583
         function bl(str) {
584 584
             layer.open({
585 585
                 type: 2,
@@ -588,7 +588,7 @@
588 588
                 area: ["60%", "80%"], //宽高
589 589
             });
590 590
         }
591
-        //督办
591
+        // 督办
592 592
         function Supervision(str) {
593 593
             layer.open({
594 594
                 type: 2,
@@ -600,7 +600,7 @@
600 600
             });
601 601
         }
602 602
 
603
-        //督查
603
+        // 督查
604 604
         function Supervision_(str) {
605 605
             layer.open({
606 606
                 type: 2,
@@ -611,7 +611,7 @@
611 611
                 area: ["60%", "80%"], //宽高
612 612
             });
613 613
         }
614
-        //强制结案
614
+        // 强制结案
615 615
         function StrongLawsuit(str) {
616 616
             layer.open({
617 617
                 type: 2,
@@ -777,28 +777,12 @@
777 777
 
778 778
         //审核通过
779 779
         function auditMultimediaThrough(str) {
780
-            layer.confirm(
781
-                "确定通过吗?", {
782
-                    btn: ["是", "否"], //按钮
783
-                },
784
-                function () {
785
-                    $.post(
786
-                        huayi.config.callcenter_url +
787
-                        "WorkOrder/AuditDispatch", {
788
-                            workorderid: str,
789
-                            nexttype: 0, // 0通过,1不通过
790
-                            token: $.cookie("token"),
791
-                        },
792
-                        function (result) {
793
-                            result = JSON.parse(result);
794
-                            if (result.state.toLowerCase() == "success") {
795
-                                layer.msg("操作成功");
796
-                                load();
797
-                            }
798
-                        }
799
-                    );
800
-                }
801
-            );
780
+            layer.open({
781
+                type: 2,
782
+                content: "../CommonHtml/auditMultimedia.html?wid=" + str + "&nexttype=0", //iframe的url,no代表不显示滚动条
783
+                title: "审核",
784
+                area: ["80%", "80%"], //宽高
785
+            });
802 786
         }
803 787
         // 审核不通过
804 788
         function auditMultimediaNotThrough(str) {
@@ -806,7 +790,7 @@
806 790
                 type: 2,
807 791
                 content: "../CommonHtml/auditMultimedia.html?wid=" + str + "&nexttype=1", //iframe的url,no代表不显示滚动条
808 792
                 title: "审核",
809
-                area: ["50%", "50%"], //宽高
793
+                area: ["80%", "80%"], //宽高
810 794
             });
811 795
         }
812 796
 
@@ -919,7 +903,8 @@
919 903
                 }
920 904
             );
921 905
         }
922
-        //		主题
906
+        
907
+        // 主题
923 908
         function ZT(obj) {
924 909
             obj.empty();
925 910
             obj.append(

+ 8 - 2
WebUI/CallCenterWeb.UI/OtherPhoneManagement/LawsuitOtherPhone.html

@@ -274,6 +274,9 @@
274 274
                                     <th data-field="F_ComTitle" data-formatter="GetCont" data-align="center">
275 275
                                         诉求标题
276 276
                                     </th>
277
+                                    <th data-field="F_ComContent" data-formatter="GetCont" data-align="center">
278
+                                        来电内容
279
+                                    </th>
277 280
                                     <th data-field="DeptName" data-align="center">
278 281
                                         承办单位
279 282
                                     </th>
@@ -292,6 +295,9 @@
292 295
                                     <th data-field="LimitTime" data-formatter="BanTime" data-align="center">
293 296
                                         办理时限
294 297
                                     </th>
298
+                                    <th data-field="F_Result" data-formatter="GetCont" data-align="center">
299
+                                        办理结果
300
+                                    </th>
295 301
                                     <th data-field="FilePath" data-formatter="setCode" data-align="center">
296 302
                                         录音
297 303
                                     </th>
@@ -389,7 +395,7 @@
389 395
         });
390 396
         //获取查询信息
391 397
         function load() {
392
-            //坐席
398
+            // 坐席
393 399
             var usercodeID = "";
394 400
             var usercode_ = $("#ZX").val(); //坐席
395 401
             if (usercode_ != null) {
@@ -402,7 +408,7 @@
402 408
                 usercodeID = "";
403 409
             }
404 410
 
405
-            //      	调度员
411
+            // 调度员
406 412
             var ddusercodeID = "";
407 413
             var ddusercode_ = $("#yardman").val(); //坐席
408 414
             if (ddusercode_ != null) {

+ 16 - 1
WebUI/CallCenterWeb.UI/ReportForm/committeeReviewedStatistics.html

@@ -177,7 +177,7 @@
177 177
                         </thead>
178 178
                     </table>
179 179
                 </div>
180
-                <div class="footerDataStatistics">统计时段:00:00—23:59:59</div>
180
+                <div class="footerDataStatistics">统计时段:<span class="footerTime"></span></div>
181 181
             </div>
182 182
         </div>
183 183
     </div>
@@ -197,6 +197,8 @@
197 197
             initTable();
198 198
             bindtree();
199 199
         	LY($("#source"));
200
+            // 获取时间段
201
+            $(".footerTime").text(getPeriodTime());
200 202
         });
201 203
         //表格
202 204
         function initTable() {
@@ -326,6 +328,19 @@
326 328
                 }
327 329
             );
328 330
         }
331
+        
332
+        // 获取时间段
333
+        function getPeriodTime() {
334
+            var date = new Date()
335
+            var year = date.getFullYear();
336
+            var month = date.getMonth();
337
+            month = month + 1;
338
+            month = month < 10 ? "0" + month : "" + month;
339
+            var day = date.getDate();
340
+            day = day < 10 ? "0" + day : "" + day;
341
+            var defaultTime = year + "-" + month + "-" + "01" + " —— " + year + "-" + month + "-" + day
342
+            return defaultTime;
343
+        }
329 344
     </script>
330 345
 </body>
331 346
 

+ 16 - 1
WebUI/CallCenterWeb.UI/ReportForm/comprehensiveStatisticsInteractionGovernmentPeople.html

@@ -181,7 +181,7 @@
181 181
                         </thead>
182 182
                     </table>
183 183
                 </div>
184
-                <!-- <div class="footerDataStatistics">统计时段:00:00—23:59:59</div> -->
184
+                <div class="footerDataStatistics">统计时段:<span class="footerTime"></span></div>
185 185
             </div>
186 186
         </div>
187 187
     </div>
@@ -201,6 +201,8 @@
201 201
             initTable();
202 202
             bindtree();
203 203
         	LY($("#source"));
204
+            // 获取时间段
205
+            $(".footerTime").text(getPeriodTime());
204 206
         });
205 207
         //表格
206 208
         function initTable() {
@@ -330,6 +332,19 @@
330 332
                 }
331 333
             );
332 334
         }
335
+
336
+        // 获取时间段
337
+        function getPeriodTime() {
338
+            var date = new Date()
339
+            var year = date.getFullYear();
340
+            var month = date.getMonth();
341
+            month = month + 1;
342
+            month = month < 10 ? "0" + month : "" + month;
343
+            var day = date.getDate();
344
+            day = day < 10 ? "0" + day : "" + day;
345
+            var defaultTime = year + "-" + month + "-" + "01" + " —— " + year + "-" + month + "-" + day
346
+            return defaultTime
347
+        }
333 348
     </script>
334 349
 </body>
335 350
 

+ 17 - 2
WebUI/CallCenterWeb.UI/ReportForm/neighborhoodCommitteeOfficeStatistics.html

@@ -173,7 +173,7 @@
173 173
                                 <th data-field="cqhf" data-align="center">超期回复</th>
174 174
                                 <th data-field="ybwg" data-align="center">已办未果</th>
175 175
                                 <th data-field="dsh" data-align="center">待审核</th>
176
-                                <th data-field="jwtj" data-align="center">委退件</th>
176
+                                <th data-field="jwtj" data-align="center">委退件</th>
177 177
                                 <th data-field="yqcount" data-align="center">延期件</th>
178 178
                                 <th data-field="czzf" data-align="center">重置转发</th>
179 179
                                 <th data-field="bh" data-align="center">驳回</th>
@@ -181,7 +181,7 @@
181 181
                         </thead>
182 182
                     </table>
183 183
                 </div>
184
-                <div class="footerDataStatistics">统计时段:00:00—23:59:59</div>
184
+                <div class="footerDataStatistics">统计时段:<span class="footerTime"></span></div>
185 185
             </div>
186 186
         </div>
187 187
     </div>
@@ -201,6 +201,8 @@
201 201
             initTable();
202 202
             bindtree();
203 203
         	LY($("#source"));
204
+            // 获取时间段
205
+            $(".footerTime").text(getPeriodTime());
204 206
         });
205 207
         //表格
206 208
         function initTable() {
@@ -330,6 +332,19 @@
330 332
                 }
331 333
             );
332 334
         }
335
+
336
+        // 获取时间段
337
+        function getPeriodTime() {
338
+            var date = new Date()
339
+            var year = date.getFullYear();
340
+            var month = date.getMonth();
341
+            month = month + 1;
342
+            month = month < 10 ? "0" + month : "" + month;
343
+            var day = date.getDate();
344
+            day = day < 10 ? "0" + day : "" + day;
345
+            var defaultTime = year + "-" + month + "-" + "01" + " —— " + year + "-" + month + "-" + day
346
+            return defaultTime;
347
+        }
333 348
     </script>
334 349
 </body>
335 350
 

+ 4 - 4
WebUI/CallCenterWeb.UI/TelCall/CallRecord.html

@@ -707,12 +707,12 @@
707 707
         }
708 708
         // 操作
709 709
         function operationFormatter(val, row) {
710
-            // if (String(row.Callback) === "1") {
711
-            //     return "-"
712
-            // } else {
710
+            if (String(row.Callback) === "1") {
711
+                return "-"
712
+            } else {
713 713
                 return '<a class="operation" onclick="backDial(\'' + row.CallNumber + '\',\'' + row.CallId +'\')" title="">回拨</a>' + 
714 714
                   '<a class="operation" onclick="callbackRecord(\'' + row.CallId + '\')" title="">回拨记录</a>';
715
-            // }
715
+            }
716 716
         }
717 717
         //获取通话类型
718 718
         function GetCallTypeList() {

+ 174 - 47
WebUI/CallCenterWeb.UI/home.html

@@ -1046,7 +1046,7 @@
1046 1046
             margin-top: -5px;
1047 1047
         }
1048 1048
 
1049
-        /*转县级*/
1049
+        /* 一键转接 */
1050 1050
 
1051 1051
         .hw_through p select {
1052 1052
             height: 19px;
@@ -1057,54 +1057,46 @@
1057 1057
             position: relative;
1058 1058
         }
1059 1059
 
1060
-        .TurnXian {
1060
+        .keyTransfer {
1061 1061
             width: 24px;
1062 1062
             margin: 0 auto;
1063 1063
         }
1064 1064
 
1065
-        .navbar-top-links .TurnXian.active {
1065
+        .navbar-top-links .keyTransfer {
1066 1066
             background: url(img/through_xian.png) no-repeat 0 0 !important;
1067 1067
             background-size: 21px !important;
1068 1068
         }
1069 1069
 
1070
-        .TurnXian img {
1071
-            margin-top: 3px;
1072
-            width: 100%;
1070
+        .navbar-top-links .keyTransfer.active {
1071
+            background: url(img/new_qrzy2.png) no-repeat 0 0 !important;
1073 1072
         }
1074 1073
 
1075
-        .turnSanjiao {
1076
-            position: absolute;
1077
-            bottom: 4px;
1078
-            left: 8px;
1079
-            width: 0px;
1080
-            height: 0px;
1081
-            border-left: 6px solid transparent;
1082
-            border-right: 6px solid transparent;
1083
-            border-top: 6px solid #ffffff;
1084
-            font-size: 0px;
1085
-            line-height: 0px;
1074
+        .keyTransfer img {
1075
+            margin-top: 3px;
1076
+            width: 100%;
1086 1077
         }
1087 1078
 
1088
-        .TurnXianDiv {
1089
-            width: 64px;
1079
+        .keyTransferDiv {
1080
+            width: 105px;
1090 1081
             position: absolute;
1091
-            right: -15px;
1082
+            right: -40px;
1092 1083
             top: 55px;
1093 1084
             text-align: center;
1094 1085
             background: #ffffff;
1095 1086
             border: 1px solid #cccccc;
1096 1087
             display: none;
1088
+            z-index: 999999;
1097 1089
         }
1098 1090
 
1099
-        .TurnXianDiv dl {
1091
+        .keyTransferDiv dl {
1100 1092
             margin: 0;
1101 1093
         }
1102 1094
 
1103
-        .TurnXianDiv dl dt {
1095
+        .keyTransferDiv dl dt {
1104 1096
             line-height: 30px;
1105 1097
         }
1106 1098
 
1107
-        .TurnXianDiv dl dt:hover {
1099
+        .keyTransferDiv dl dt:hover {
1108 1100
             cursor: pointer;
1109 1101
             background: #048aad;
1110 1102
             color: #ffffff;
@@ -1169,6 +1161,44 @@
1169 1161
             overflow-y: scroll;
1170 1162
         }
1171 1163
 
1164
+        /* 综合查询 */
1165
+        .comprehensive {
1166
+            -moz-border-radius: 20px;
1167
+            -webkit-border-radius: 20px;
1168
+            border-radius: 20px;
1169
+            position: absolute;
1170
+            background: #00a1cb;
1171
+            color: #ffffff;
1172
+            z-index: 2;
1173
+            width: 40px;
1174
+            height: 40px;
1175
+            line-height: 40px;
1176
+            text-align: center;
1177
+            right: 5px;
1178
+            top: 70px;
1179
+            cursor: pointer;
1180
+        }
1181
+
1182
+        .comprehensiveContent {
1183
+            position: absolute;
1184
+            right: 60px;
1185
+            top: 35px;
1186
+            display: none;
1187
+            padding: 5px 10px;
1188
+            width: 1300px;
1189
+            height: 780px;
1190
+            border: 1px solid #e6e6e6;
1191
+            background: #ffffff;
1192
+            overflow-y: scroll;
1193
+        }
1194
+
1195
+        .comprehensiveContentSerrch {
1196
+            margin: 15px 0 10px 0;
1197
+        }
1198
+        .comprehensiveContentSerrch .form-group .col-sm-1 {
1199
+            line-height: 34px;
1200
+        }
1201
+
1172 1202
         .content {
1173 1203
             height: 450px !important;
1174 1204
         }
@@ -1403,7 +1433,7 @@
1403 1433
                                 </li>
1404 1434
                                 <li datafun="MeetingTakeBack">
1405 1435
                                     <i class="iconfont fa-5x MeetingTakeBack"></i>
1406
-                                    <p>多方通话回签</p>
1436
+                                    <p>通话回签</p>
1407 1437
                                 </li>
1408 1438
                                 <li datafun="Transfer">
1409 1439
                                     <i class="iconfont fa-5x Transfer"></i>
@@ -1448,23 +1478,16 @@
1448 1478
                                 <!-- <li datafun="TurnIvr"  class="hw_show ">
1449 1479
                                     <i class="iconfont fa-5x TurnIvr active"></i>
1450 1480
                                     <p> 转导播组 </p>
1451
-                                </li>
1452
-                                <li datafun="TurnXian"  class="hw_through " index="">
1453
-                                    <i class="iconfont fa-5x TurnXian active"></i>
1481
+                                </li> -->
1482
+                                <li datafun="keyTransfer" class="hw_through " index="">
1483
+                                    <i class="iconfont fa-5x keyTransfer"></i>
1454 1484
                                     <p>转接</p>
1455
-                                    <div class="turnSanjiao"></div>
1456 1485
                                 </li>
1457
-                                <div class="TurnXianDiv">
1458
-		                        	<dl>
1459
-		                        		<dt>永城</dt>
1460
-		                        		<dt>柘城</dt>
1461
-		                        		<dt>睢县</dt>
1462
-		                        		<dt>夏邑</dt>
1463
-		                        		<dt>宁陵</dt>
1464
-		                        		<dt>民权</dt>
1465
-		                        		<dt>虞城</dt>
1466
-		                        	</dl>
1467
-		                        </div> -->
1486
+                                <div class="keyTransferDiv">
1487
+                                    <dl>
1488
+                                        <dt>请选择</dt>
1489
+                                    </dl>
1490
+                                </div>
1468 1491
                             </ul>
1469 1492
                         </div>
1470 1493
                         <div class="nav closed">
@@ -1760,6 +1783,7 @@
1760 1783
                     <div class="ld-sercon-con clearfix" style="position: relative;">
1761 1784
                         <div class="Pre-second second-con addgd" style="position: relative">
1762 1785
                             <div class="reposit">知</div>
1786
+                            <div class="comprehensive">综</div>
1763 1787
                             <form>
1764 1788
                                 <div class="form-group dicValueList clearfix" id="dicValueList">
1765 1789
                                     <span class="col-sm-1 Import">
@@ -1919,7 +1943,7 @@
1919 1943
                                         </span> -->
1920 1944
                                     </div>
1921 1945
                                     <div class="form-group clearfix">
1922
-                                        
1946
+
1923 1947
                                         <!-- <span class="col-sm-1 Import">
1924 1948
                                             反映类别:
1925 1949
                                         </span>
@@ -2002,7 +2026,7 @@
2002 2026
                                         <span class="col-sm-11 source_area">
2003 2027
                                             <input id="sourceaddress" type="text" placeholder="输入详细地址"
2004 2028
                                                 class="form-control" />
2005
-                                        </span>                                    
2029
+                                        </span>
2006 2030
                                     </div>
2007 2031
                                     <div class="form-group clearfix">
2008 2032
                                         <div class="mapBJ" style="width: 100%; height: 100%"></div>
@@ -2051,7 +2075,7 @@
2051 2075
                                         data-pagination="true">
2052 2076
                                         <thead>
2053 2077
                                             <tr>
2054
-                                                <th data-align="center" data-formatter="setCode">编号</th>
2078
+                                                <th data-align="center" data-formatter="serialNumber">编号</th>
2055 2079
                                                 <th data-field="F_XingMing" data-align="center">专家姓名</th>
2056 2080
                                                 <th data-field="F_ShouJi" data-align="center">手机号码</th>
2057 2081
                                                 <th data-field="F_FaBuShiJian" data-align="center">发布时间</th>
@@ -2068,7 +2092,7 @@
2068 2092
                                         data-pagination="true">
2069 2093
                                         <thead>
2070 2094
                                             <tr>
2071
-                                                <th data-align="center" data-formatter="setCode">编号</th>
2095
+                                                <th data-align="center" data-formatter="serialNumber">编号</th>
2072 2096
                                                 <th data-field="F_FaBuDanWei" data-align="center">发布单位</th>
2073 2097
                                                 <th data-field="F_FaBuShiJian" data-align="center">发布时间</th>
2074 2098
                                                 <th data-field="F_YeWuMingCheng" data-align="center">业务名称</th>
@@ -2088,7 +2112,7 @@
2088 2112
                                         data-pagination="true">
2089 2113
                                         <thead>
2090 2114
                                             <tr>
2091
-                                                <th data-align="center" data-formatter="setCode">编号</th>
2115
+                                                <th data-align="center" data-formatter="serialNumber">编号</th>
2092 2116
                                                 <th data-field="F_FaBuShiJian" data-align="center">发布时间</th>
2093 2117
                                                 <th data-field="F_FaWenWenHao" data-align="center">发文文号</th>
2094 2118
                                                 <th data-field="F_FaWenDanWei" data-align="center">发文单位</th>
@@ -2108,7 +2132,7 @@
2108 2132
                                         data-pagination="true">
2109 2133
                                         <thead>
2110 2134
                                             <tr>
2111
-                                                <th data-align="center" data-formatter="setCode">编号</th>
2135
+                                                <th data-align="center" data-formatter="serialNumber">编号</th>
2112 2136
                                                 <th data-field="F_FaBuShiJian" data-align="center">发布时间</th>
2113 2137
                                                 <th data-field="F_FaWenWenHao" data-align="center">发文文号</th>
2114 2138
                                                 <th data-field="F_FaWenDanWei" data-align="center">发文单位</th>
@@ -2128,7 +2152,7 @@
2128 2152
                                         data-pagination="true">
2129 2153
                                         <thead>
2130 2154
                                             <tr>
2131
-                                                <th data-align="center" data-formatter="setCode">编号</th>
2155
+                                                <th data-align="center" data-formatter="serialNumber">编号</th>
2132 2156
                                                 <th data-field="F_FaBuShiJian" data-align="center">发布时间</th>
2133 2157
                                                 <th data-field="F_FaWenWenHao" data-align="center">发文文号</th>
2134 2158
                                                 <th data-field="F_FaWenDanWei" data-align="center">发文单位</th>
@@ -2148,7 +2172,7 @@
2148 2172
                                         data-pagination="true">
2149 2173
                                         <thead>
2150 2174
                                             <tr>
2151
-                                                <th data-align="center" data-formatter="setCode">编号</th>
2175
+                                                <th data-align="center" data-formatter="serialNumber">编号</th>
2152 2176
                                                 <th data-field="F_FaBuShiJian" data-align="center">发布时间</th>
2153 2177
                                                 <th data-field="F_FaWenWenHao" data-align="center">发文文号</th>
2154 2178
                                                 <th data-field="F_FaWenDanWei" data-align="center">发文单位</th>
@@ -2166,6 +2190,109 @@
2166 2190
                                 <!-- <ul></ul> -->
2167 2191
                             </div>
2168 2192
                         </div>
2193
+                        <!--综合查询内容-->
2194
+                        <div class="ldcr-bottom comprehensiveContent">
2195
+                            <div class="ldcrb-top clearfix">
2196
+                                <ul class="clearfix">
2197
+                                    <li class="activity" style=" border-bottom: 1px solid #69cbd0;" data-type="1">
2198
+                                        综合查询
2199
+                                    </li>
2200
+                                </ul>
2201
+                            </div>
2202
+                            <div class="comprehensiveContentSerrch">
2203
+                                <div class="form-group clearfix">
2204
+                                    <span class="col-sm-1">
2205
+                                        工单标题:
2206
+                                    </span>
2207
+                                    <span class="col-sm-3">
2208
+                                        <input type="text" id="workOrderTitle" class="form-control" />
2209
+                                    </span>
2210
+                                    <span class="col-sm-1">
2211
+                                        录入时间:
2212
+                                    </span>
2213
+                                    <span class="col-sm-7">
2214
+                                        <input type="text" id="comprehensiveContentStarttime" class="form-control" style="display: inline-block; width: 45%" /> - <input type="text" id="comprehensiveContentEndtime" class="form-control" style="display: inline-block; width: 45%;" />
2215
+                                    </span>
2216
+                                </div>
2217
+                                <div class="form-group clearfix">
2218
+                                    <span class="col-sm-1">
2219
+                                        事项编号:
2220
+                                    </span>
2221
+                                    <span class="col-sm-3">
2222
+                                        <input type="text" id="wids" class="form-control" />
2223
+                                    </span>
2224
+                                    <span class="col-sm-1">
2225
+                                        来电号码:
2226
+                                    </span>
2227
+                                    <span class="col-sm-3">
2228
+                                        <input type="text" id="comprehensiveContentSerrchTel" class="form-control" />
2229
+                                    </span>
2230
+                                    
2231
+                                </div>
2232
+                                <div class="form-group clearfix">
2233
+                                    <span class="col-sm-1">
2234
+                                        来电内容:
2235
+                                    </span>
2236
+                                    <span class="col-sm-3">
2237
+                                        <input type="text" id="workOrderContent" class="form-control" />
2238
+                                    </span>
2239
+                                    <span class="col-sm-1">
2240
+                                        办理结果:
2241
+                                    </span>
2242
+                                    <span class="col-sm-3">
2243
+                                        <input type="text" id="workOrderProcessingResult" class="form-control" />
2244
+                                    </span>
2245
+                                    <span class="col-sm-4">
2246
+                                        <button class="btns comprehensiveContentSerrchBtn">搜索</button>
2247
+                                    </span>
2248
+                                </div>
2249
+                                <div class="form-group clearfix">
2250
+                                    <span class="col-sm-1">
2251
+                                        受话坐席:
2252
+                                    </span>
2253
+                                    <span class="col-sm-3">
2254
+                                        <select id="comprehensiveContentSerrchSeat" name="select" class="selectpicker show-tick form-control" multiple
2255
+                                        data-live-search="true">
2256
+                                            <option value="">请选择坐席</option>
2257
+                                        </select>
2258
+                                        <!-- <input type="text" id="comprehensiveContentSerrchSeat" class="form-control" /> -->
2259
+                                    </span>
2260
+                                </div>
2261
+                            </div>
2262
+                            <div class="detail-con">
2263
+                                <div class="">
2264
+                                    <table id="comprehensiveContentList" data-row-style="rowStyle" data-query-params="queryParams"
2265
+                                        data-pagination="true">
2266
+                                        <thead>
2267
+                                            <tr>
2268
+                                                <th data-formatter="serialNumber" data-align="center">
2269
+                                                    序号
2270
+                                                </th>
2271
+                                                <th data-field="F_WorkOrderId" data-formatter="GetLink" data-align="center">
2272
+                                                    工单单号
2273
+                                                </th>
2274
+                                                <th data-field="F_ComTitle" data-align="center">
2275
+                                                    诉求标题
2276
+                                                </th>
2277
+                                                <th data-field="DeptName" data-align="center">
2278
+                                                    承办单位
2279
+                                                </th>
2280
+                                                <th data-field="F_ComContent" data-align="center">
2281
+                                                    来电内容
2282
+                                                </th>
2283
+                                                <th data-field="F_Result" data-align="center">
2284
+                                                    办理结果
2285
+                                                </th>
2286
+                                                <th data-field="FilePath" data-formatter="setCode" data-align="center">
2287
+                                                    录音
2288
+                                                </th>            
2289
+                                            </tr>
2290
+                                        </thead>
2291
+                                        <tbody id="tbody6"></tbody>
2292
+                                    </table>
2293
+                                </div>
2294
+                            </div>
2295
+                        </div>
2169 2296
 
2170 2297
                     </div>
2171 2298
                 </div>

Plik diff jest za duży
+ 0 - 288
WebUI/CallCenterWeb.UI/js/appeal/index.js


Plik diff jest za duży
+ 0 - 350
WebUI/CallCenterWeb.UI/js/appeal/index1.js


+ 186 - 60
WebUI/CallCenterWeb.UI/js/index.js

@@ -7,6 +7,8 @@ $(document).ready(function () {
7 7
     domainPrompt();
8 8
     // 历史工单
9 9
     loadOld();
10
+    // 一键转接
11
+    getkeyTransferData();
10 12
     // 来电弹屏
11 13
     laydate.skin("blue");
12 14
     laydate({
@@ -25,6 +27,18 @@ $(document).ready(function () {
25 27
         elem: "#con_endTime",
26 28
         event: "focus",
27 29
     });
30
+    laydate({
31
+        elem: '#comprehensiveContentStarttime',
32
+        event: 'focus',
33
+        istime: true,
34
+        format: 'YYYY-MM-DD hh:mm:ss'
35
+    });
36
+    laydate({
37
+        elem: '#comprehensiveContentEndtime',
38
+        event: 'focus',
39
+        istime: true,
40
+        format: 'YYYY-MM-DD hh:mm:ss'
41
+    });
28 42
     //获取消息
29 43
     getTopMsgs();
30 44
     //获取电话类别
@@ -77,6 +91,7 @@ $(document).ready(function () {
77 91
         $(".ldtp-con").addClass("fadeOutUp");
78 92
         $(".ldtp-con").css("display", "none");
79 93
         $(".repoConte").hide();
94
+        $(".comprehensiveContent").hide();
80 95
         Clean();
81 96
         //alert("111")
82 97
         $(".SayBusy").addClass("active");
@@ -225,7 +240,6 @@ $(document).ready(function () {
225 240
                 $.cookie("seartGroupID", result.data.user.F_SeartGroupID);
226 241
                 $("#RoleCode").val(result.data.user.F_RoleCode);
227 242
                 $("#GroupCode").val(result.data.user.F_GroupCode);
228
-                //console.log($("#RoleCode").val());
229 243
                 $(".username").text(result.data.user.F_UserName);
230 244
                 $(".chat_username").text(result.data.user.F_UserCode);
231 245
                 $(".user_code").text(result.data.user.F_UserCode);
@@ -323,7 +337,6 @@ $(document).ready(function () {
323 337
         function (result) {
324 338
             $.ajaxSettings.async = true;
325 339
             if (result.state.toLowerCase() == "success") {
326
-                console.log("menu", result.data);
327 340
                 $(result.data).each(function (i, n) {
328 341
                     var html =
329 342
                         '<li><a href="#" dataid=' +
@@ -390,64 +403,70 @@ $(document).ready(function () {
390 403
         }
391 404
     );
392 405
     document.onclick = function (e) {
393
-        $(".TurnXianDiv").hide();
406
+        $(".keyTransferDiv").hide();
394 407
     };
395 408
     $(".hw_through").click(function (e) {
396
-        $(".TurnXianDiv").toggle();
409
+        $(".keyTransferDiv").toggle();
397 410
         e = e || event;
398 411
         stopFunc(e);
399 412
     });
400 413
     function stopFunc(e) {
401 414
         e.stopPropagation ? e.stopPropagation() : (e.cancelBubble = true);
402 415
     }
403
-    //	一键转县
416
+    // 一键转接
404 417
     function throungh() {
405
-        $.ajax({
406
-            type: "get",
407
-            url: huayi.config.callcenter_url + "CallOutOpt/GetCallOutprefix",
408
-            async: true,
409
-            dataType: "json",
410
-            data: {
411
-                token: $.cookie("token"),
412
-                phone: $(".hw_through").attr("index"),
413
-            },
414
-            success: function (result) {
415
-                if (result.state.toLowerCase() == "success") {
416
-                    var guid = uuid();
417
-                    obj.Type = "Transfer";
418
-                    obj.DestinationNumber = result.data.phone;
419
-                    obj.Header = result.data.fix;
420
-                    obj.TaskType = "0"; //0:拨号外呼;1:未接来电外呼;2:回访外呼
421
-                    obj.TaskPhoneID = ""; //回访的电话ID
422
-                    obj.TaskID = guid; //回访记录编号
423
-                    Send();
424
-                }
425
-            },
426
-        });
418
+        var guid = uuid();
419
+        obj.Type = "Transfer";
420
+        obj.DestinationNumber = "8" + $(".hw_through").attr("index");
421
+        obj.Header = "8";
422
+        obj.TaskType = "0"; //0:拨号外呼;1:未接来电外呼;2:回访外呼
423
+        obj.TaskPhoneID = ""; //回访的电话ID
424
+        obj.TaskID = guid; //回访记录编号
425
+        Send();
426
+        // $.ajax({
427
+        //     type: "get",
428
+        //     url: huayi.config.callcenter_url + "CallOutOpt/GetCallOutprefix",
429
+        //     async: true,
430
+        //     dataType: "json",
431
+        //     data: {
432
+        //         token: $.cookie("token"),
433
+        //         phone: $(".hw_through").attr("index"),
434
+        //     },
435
+        //     success: function (result) {
436
+        //         if (result.state.toLowerCase() == "success") {
437
+        //         }
438
+        //     },
439
+        // });
427 440
     }
428
-    //  获取转接号码
429
-    $(".TurnXianDiv dl dt").click(function () {
430
-        var xianName = $(this).text();
441
+
442
+    // 获取转接数据
443
+    function getkeyTransferData() {
444
+        $(".keyTransferDiv dl").empty();
431 445
         $.ajax({
432 446
             type: "get",
433
-            url: huayi.config.callcenter_url + "WorkOrder/GetCityList",
434
-            async: true,
447
+            url: huayi.config.callcenter_url + "Dictionary/GetDicValueListById",
435 448
             dataType: "json",
449
+            async: false,
436 450
             data: {
437 451
                 token: $.cookie("token"),
438
-                name: xianName,
452
+                id: 2988,
439 453
             },
440
-            success: function (result) {
441
-                if (result.state.toLowerCase() == "success") {
442
-                    debugger;
443
-                    var telPhone = result.data[0].F_Phone;
444
-                    $(".hw_through").attr("index", telPhone);
445
-                    throungh();
446
-                    $(".TurnXianDiv").hide();
454
+            success: function (data) {
455
+                if (data.state.toLowerCase() == "success") {
456
+                    var content = data.data;
457
+                    $(content).each(function (i, n) {
458
+                        $("<dt data-number='" + n.F_Remark + "'>" + n.F_Value + "</dt>").appendTo(".keyTransferDiv dl");
459
+                    });
447 460
                 }
448 461
             },
449 462
         });
450
-    });
463
+    }
464
+
465
+    // 转接绑定事件
466
+    $(".keyTransferDiv dl").on("click", "dt", function(e) {
467
+        $(".hw_through").attr("index", $(this).attr("data-number"))
468
+        throungh()
469
+    })
451 470
 
452 471
     //话务相关
453 472
     $("#top-search li").click(function () {
@@ -510,6 +529,8 @@ $(document).ready(function () {
510 529
                     case "satisfactionEvaluation": //多方通话回签
511 530
                         satisfactionEvaluationFun();
512 531
                         break;
532
+                    case "keyTransfer": // 一键转接
533
+                        break;
513 534
                     default:
514 535
                         Send();
515 536
                         break;
@@ -541,8 +562,7 @@ $(document).ready(function () {
541 562
         if ($("#Result").val()) {
542 563
             $.ajax({
543 564
                 type: "get",
544
-                url:
545
-                    huayi.config.callcenter_url + "CallOutOpt/GetCallOutprefix",
565
+                url: huayi.config.callcenter_url + "CallOutOpt/GetCallOutprefix",
546 566
                 async: true,
547 567
                 dataType: "json",
548 568
                 data: {
@@ -624,6 +644,19 @@ $(document).ready(function () {
624 644
     //加载左侧导航菜单
625 645
     //loadMenu();
626 646
 
647
+    // 综合菜单
648
+    $(".comprehensive").click(function () {
649
+        $(".comprehensiveContent").toggle();
650
+    });
651
+    // 获取坐席
652
+    getSeatData($("#comprehensiveContentSerrchSeat"))
653
+    // 综合查询
654
+    loadComprehensiveList()
655
+    // 搜索
656
+    $(".comprehensiveContentSerrchBtn").click(function() {
657
+        loadComprehensiveList();
658
+    })
659
+
627 660
     //客户资料
628 661
     $(".khzl tbody>tr>td input").attr("readonly", true);
629 662
     $(".save").hide();
@@ -1300,7 +1333,7 @@ function setCode(val) {
1300 1333
     if (val) {
1301 1334
         return (
1302 1335
             '<div class="imgs" style="cursor: pointer;">' +
1303
-            '<img src="./img/vice.png" alt="" onclick= "helper.luyin.view(this)" item="' +
1336
+            '<img src="./img/vice.png" alt="" onclick= "recording(this)" item="' +
1304 1337
             val +
1305 1338
             '" />' +
1306 1339
             "</div>"
@@ -1310,6 +1343,18 @@ function setCode(val) {
1310 1343
     }
1311 1344
 }
1312 1345
 
1346
+function recording(ele) {
1347
+    var path = $(ele).attr("item");
1348
+    layer.open({
1349
+        type: 2,
1350
+        content: "./CommonHtml/recording.html?path=" + path, //iframe的url,no代表不显示滚动条
1351
+        title: '录音',
1352
+        area: ['30%', '20%'], //宽高
1353
+        maxmin: true,
1354
+        shade: 0
1355
+    });
1356
+}
1357
+
1313 1358
 function GetLink(val) {
1314 1359
     if (val) {
1315 1360
         return "<a onclick=\"ckxq('" + val + "')\">" + val + "</a>";
@@ -1703,7 +1748,7 @@ $(".ldcrb-top ul li").click(function () {
1703 1748
 });
1704 1749
 
1705 1750
 // 序号
1706
-function setCode(val, row, index) {
1751
+function serialNumber(val, row, index) {
1707 1752
     return index + 1;
1708 1753
 }
1709 1754
 // 操作
@@ -1808,7 +1853,7 @@ function detailBtn2(id) {
1808 1853
 function detailBtn3(id) {
1809 1854
     layer.open({
1810 1855
         type: 2,
1811
-        content: "./zhiShiKu/detailZhiShiHotLssues.html?id=" + id, //iframe的url,no代表不显示滚动条
1856
+        content: "./zhiShiKu/detailZhiShiKuHotLssues.html?id=" + id, //iframe的url,no代表不显示滚动条
1812 1857
         title: "热点问题",
1813 1858
         area: ["80%", "80%"], //宽高
1814 1859
     });
@@ -1844,6 +1889,101 @@ function detailBtn6(id) {
1844 1889
     });
1845 1890
 }
1846 1891
 
1892
+
1893
+// 获取坐席
1894
+function getSeatData(obj) {
1895
+    obj.empty();
1896
+    $.getJSON(
1897
+        huayi.config.callcenter_url + "UserAccount/GetSeatList",
1898
+        {
1899
+            token: $.cookie("token"),
1900
+        },
1901
+        function (data) {
1902
+            if (data.state.toLowerCase() == "success") {
1903
+                var content = data.data;
1904
+                $(content).each(function (i, n) {
1905
+                    $(
1906
+                        "<option value='" +
1907
+                            n.F_UserCode +
1908
+                            "'>" +
1909
+                            n.F_UserName +
1910
+                            "</option>"
1911
+                    ).appendTo(obj);
1912
+                });
1913
+                obj.selectpicker({
1914
+                    noneSelectedText: "请选择", //默认显示内容
1915
+                });
1916
+                obj.selectpicker("refresh");
1917
+            }
1918
+        }
1919
+    );
1920
+}
1921
+
1922
+// 综合查询
1923
+function loadComprehensiveList() {
1924
+    //先销毁表格
1925
+    $("#comprehensiveContentList").bootstrapTable("destroy");
1926
+    //初始化表格,动态从服务器加载数据
1927
+    $("#comprehensiveContentList").bootstrapTable({
1928
+        method: "get", //使用get请求到服务器获取数据
1929
+        url: huayi.config.callcenter_url + "WorkOrder/GetList", //获取数据的Servlet地址
1930
+        contentType: "application/x-www-form-urlencoded",
1931
+        striped: true, //表格显示条纹
1932
+        pagination: true, //启动分页
1933
+        pageSize: 10, //每页显示的记录数
1934
+        pageNumber: 1, //当前第几页
1935
+        pageList: [10, 20, 50, 100], //记录数可选列表
1936
+        search: false, //是否启用查询
1937
+        showColumns: false, //显示下拉框勾选要显示的列
1938
+        showRefresh: false, //显示刷新按钮
1939
+        sidePagination: "server", //表示服务端请求
1940
+        //设置为undefined可以获取pageNumber,pageSize,searchText,sortName,sortOrder
1941
+        //设置为limit可以获取limit, offset, search, sort, order
1942
+        queryParamsType: "undefined",
1943
+        queryParams: function queryParams(params) {
1944
+            //设置查询参数
1945
+            var param = {
1946
+                page: params.pageNumber,
1947
+                pagesize: params.pageSize,
1948
+                workid: $("#wids").val().replace(/\s+/g, ""),
1949
+                ComTitle: $("#workOrderTitle").val().replace(/\s+/g, ""), // 工单标题
1950
+                ComContent: $("#workOrderContent").val().replace(/\s+/g, ""), // 工单内容
1951
+                Result: $("#workOrderProcessingResult").val().replace(/\s+/g, ""), // 办理结果
1952
+                tel: $("#comprehensiveContentSerrchTel").val().replace(/\s+/g, ""), // 来电号码
1953
+                usercode: conversionBootstrapSelectData($("#comprehensiveContentSerrchSeat")), // 受话坐席
1954
+                // starttime: $("#starttime").val(), //=开始时间
1955
+                // endtime: $("#endtime").val(), //=结束时间
1956
+                comprehensive: 1,
1957
+                token: $.cookie("token"),
1958
+            };
1959
+            return param;
1960
+        },
1961
+        onLoadSuccess: function (data) {
1962
+            //加载成功时执行
1963
+            //						layer.msg("加载成功");
1964
+        },
1965
+        onLoadError: function () {
1966
+            //加载失败时执行
1967
+            //layer.msg("加载数据失败", { time: 1500, icon: 2 });
1968
+        },
1969
+    });
1970
+}
1971
+
1972
+function conversionBootstrapSelectData(obj) {
1973
+    var returnData = "";
1974
+    var selectedData = obj.val();
1975
+    if (selectedData != null) {
1976
+        for (var i=0; i < selectedData.length; i++) {
1977
+            returnData += selectedData[i] + ","
1978
+        }
1979
+        returnData = returnData.slice(0, -1);
1980
+    } else {
1981
+        returnData = ""
1982
+    }
1983
+    return returnData;
1984
+}
1985
+
1986
+
1847 1987
 //解决
1848 1988
 function resolve(id) {
1849 1989
     var laye = layer.confirm(
@@ -2549,8 +2689,6 @@ function rightUp() {
2549 2689
             helper.init.isload = 1;
2550 2690
             $(".mid").val(data.maxid);
2551 2691
             //						helper.cookies.set("mid", data.maxid, 7);
2552
-            //						console.log(data.maxid)
2553
-            //						console.log($('.mid').val())
2554 2692
             $(".xx_count").html(data.total);
2555 2693
             $(".sur_count").html(data.timeoutcount);
2556 2694
             $("#cqorder").val(data.timeoutcount);
@@ -2596,14 +2734,6 @@ function rightUp() {
2596 2734
 function goDC() {
2597 2735
     top.$("iframe:visible")[0].src = "Business/WorkDC.html";
2598 2736
 }
2599
-function ckxq(str) {
2600
-    layer.open({
2601
-        type: 2,
2602
-        content: "CommonHtml/WorkDatil.html?wid=" + str, //iframe的url,no代表不显示滚动条
2603
-        title: "工单详情",
2604
-        area: ["100%", "100%"], //宽高
2605
-    });
2606
-}
2607 2737
 
2608 2738
 //右下角消息弹框
2609 2739
 function rightDown() {
@@ -2680,7 +2810,6 @@ function rightDown() {
2680 2810
                         sts = "其他";
2681 2811
                         break;
2682 2812
                 }
2683
-                //							console.log(typeof(n.state))
2684 2813
                 $(
2685 2814
                     '<li onclick="turnTo(this)">' +
2686 2815
                         '<a href="javaScript:;" data-index="' +
@@ -2772,7 +2901,6 @@ box.onmousedown = function (ev) {
2772 2901
     //求出鼠标和box的位置差值
2773 2902
     var x = oEvent.clientX - box.offsetLeft;
2774 2903
     var y = oEvent.clientY - box.offsetTop;
2775
-    console.log(x);
2776 2904
     //鼠标移动的函数
2777 2905
     //把事件加在document上,解决因为鼠标移动太快时,
2778 2906
     //鼠标超过box后就没有了拖拽的效果的问题
@@ -3067,7 +3195,6 @@ function getnew() {
3067 3195
 }
3068 3196
 $("#know").on("click", function () {
3069 3197
     var data_id = $(".top_notices_con1").attr("data_id");
3070
-    console.log(data_id);
3071 3198
     Read(data_id, event);
3072 3199
     $(".tan_ping").css("display", "none");
3073 3200
     getnew();
@@ -3230,7 +3357,6 @@ function getSearchReactionCategory(key) {
3230 3357
         },
3231 3358
         function (result) {
3232 3359
             result = $.parseJSON(result);
3233
-            console.log("435345", result.state.toLowerCase);
3234 3360
             if (result.state.toLowerCase() === "success") {
3235 3361
                 var content = result.data;
3236 3362
                 if (content.length > 0) {

+ 1 - 0
WebUI/CallCenterWeb.UI/js/main.js

@@ -437,6 +437,7 @@ function LineStateAgentBack(data) {
437 437
         $(".DropCall").addClass("active");
438 438
         $(".Hold").addClass("active");
439 439
         $(".Transfer").addClass("active");
440
+        // $(".keyTransfer").addClass("active");
440 441
         $(".Meeting").addClass("active");
441 442
         $('.TurnIvr').addClass("active");
442 443
         $('.Consult').addClass("active");

+ 1 - 0
WebUI/CallCenterWeb.UI/js/search/screen.js

@@ -63,6 +63,7 @@
63 63
     //     dcexcel(this);
64 64
     // });
65 65
 });
66
+
66 67
 ///坐席
67 68
 function ZX(obj) {
68 69
     obj.empty();

+ 361 - 79
anyangWebAPP/pages/viewWorkOrder/viewWorkOrder.vue

@@ -76,9 +76,8 @@
76 76
             <view class="contentTable">
77 77
               <text class="contentTitle">附件:</text>
78 78
               <view class="contentText">
79
-                <show-file :file="File"></show-file>
79
+                <show-file :file="detailContentData.File"></show-file>
80 80
               </view>
81
-              <!-- <text >{{ detailContentData.SourceName }}</text> -->
82 81
             </view>
83 82
           </view>
84 83
         </view>
@@ -145,7 +144,7 @@
145 144
                 </view>
146 145
                 <view class="contentTable">
147 146
                   <text class="contentTitle">状态:</text>
148
-                  <text class="contentText">{{ item.F_IsAudit |  backauditFilters }}</text>
147
+                  <text class="contentText">{{ item.F_IsAudit | backauditFilters }}</text>
149 148
                 </view>
150 149
                 <view class="contentTable">
151 150
                   <text class="contentTitle">审核时间:</text>
@@ -162,6 +161,7 @@
162 161
                 <view class="contentTable">
163 162
                   <text class="contentTitle">附件:</text>
164 163
                   <view class="contentText">
164
+                    <show-file :file="item.File"></show-file>
165 165
                   </view>
166 166
                 </view>
167 167
               </view>
@@ -171,7 +171,238 @@
171 171
             </view>
172 172
           </view>
173 173
         </view>
174
-        <view v-show="current === 2"></view>
174
+        <view v-show="current === 2">
175
+          <view class="detailContent">
176
+            <view class="contentBlock">
177
+              <text class="title">市长批示</text>
178
+              <view class="content" v-for="item in mayorInstructions" :key="item.F_Id">
179
+                <view class="contentTable">
180
+                  <text class="contentTitle">批示人:</text>
181
+                  <text class="contentText">{{ item.F_BatchReason }}</text>
182
+                </view>
183
+                <view class="contentTable">
184
+                  <text class="contentTitle">批示内容:</text>
185
+                  <text class="contentText">{{ item.F_SuperOpinion }}</text>
186
+                </view>
187
+                <view class="contentTable">
188
+                  <text class="contentTitle">批示时间:</text>
189
+                  <text class="contentText">{{ item.F_CreateTime }}</text>
190
+                </view>
191
+                <view class="contentTable">
192
+                  <text class="contentTitle">附件:</text>
193
+                  <view class="contentText">
194
+                    <show-file :file="item.File"></show-file>
195
+                  </view>
196
+                </view>
197
+              </view>
198
+              <yiLine>
199
+                <view></view>
200
+              </yiLine>
201
+            </view>
202
+          </view>
203
+        </view>
204
+        <view v-show="current === 3">
205
+          <view class="detailContent">
206
+            <view class="contentBlock">
207
+              <text class="title">工单驳回</text>
208
+              <view class="content" v-for="item in workOrderRejectedList" :key="item.F_Id">
209
+                <view class="contentTable">
210
+                  <text class="contentTitle">退回人:</text>
211
+                  <text class="contentText">{{ item.F_BatchReason }}</text>
212
+                </view>
213
+                <view class="contentTable">
214
+                  <text class="contentTitle">退回内容:</text>
215
+                  <text class="contentText">{{ item.F_SuperOpinion }}</text>
216
+                </view>
217
+                <view class="contentTable">
218
+                  <text class="contentTitle">退回时间:</text>
219
+                  <text class="contentText">{{ item.F_CreateTime }}</text>
220
+                </view>
221
+              </view>
222
+              <yiLine>
223
+                <view></view>
224
+              </yiLine>
225
+            </view>
226
+          </view>
227
+        </view>
228
+        <view v-show="current === 4">
229
+        </view>
230
+        <view v-show="current === 5">
231
+          <view class="detailContent">
232
+            <view class="contentBlock">
233
+              <text class="title">延时审核</text>
234
+              <view class="content" v-for="item in delayAuditList" :key="item.F_Id">
235
+                <view class="contentTable">
236
+                  <text class="contentTitle">状态:</text>
237
+                  <text class="contentText">{{ item.F_IsAudit | delayAuditFilters }}</text>
238
+                </view>
239
+                <view class="contentTable">
240
+                  <text class="contentTitle">申请时间:</text>
241
+                  <text class="contentText">{{ item.F_CreateTime }}</text>
242
+                </view>
243
+                <view class="contentTable">
244
+                  <text class="contentTitle">申请原因:</text>
245
+                  <text class="contentText">{{ item.F_Reason }}</text>
246
+                </view>
247
+                <view class="contentTable">
248
+                  <text class="contentTitle">审核时间:</text>
249
+                  <text class="contentText">{{ item.F_AuditTime }}</text>
250
+                </view>
251
+                <view class="contentTable">
252
+                  <text class="contentTitle">审核意见:</text>
253
+                  <text class="contentText">{{ item.F_RefuseReason }}</text>
254
+                </view>
255
+              </view>
256
+              <yiLine>
257
+                <view></view>
258
+              </yiLine>
259
+            </view>
260
+          </view>
261
+        </view>
262
+        <view v-show="current === 6">
263
+          <view class="detailContent">
264
+            <view class="contentBlock">
265
+              <text class="title">回访信息</text>
266
+              <view class="content" v-for="item in returnInformationList" :key="item.F_Id">
267
+                <view class="contentTable">
268
+                  <text class="contentTitle">回访人:</text>
269
+                  <text class="contentText">{{ item.F_VisitUser }}</text>
270
+                </view>
271
+                <view class="contentTable">
272
+                  <text class="contentTitle">回访方式:</text>
273
+                  <text class="contentText">{{ item.F_Type | returnTypeFilters }}</text>
274
+                </view>
275
+                <view class="contentTable">
276
+                  <text class="contentTitle">回访信息:</text>
277
+                  <text class="contentText">{{ item.F_Result }}</text>
278
+                </view>
279
+                <view class="contentTable">
280
+                  <text class="contentTitle">回访结果:</text>
281
+                  <text class="contentText">{{ item.F_IsSatisfie | returnIsSatisfieFilters }}</text>
282
+                </view>
283
+                <view class="contentTable">
284
+                  <text class="contentTitle">操作时间:</text>
285
+                  <text class="contentText">{{ item.F_CreateTime }}</text>
286
+                </view>
287
+                <view class="contentTable">
288
+                  <text class="contentTitle">回访号码:</text>
289
+                  <text class="contentText">{{ detailContentData.F_CusPhone }}</text>
290
+                </view>
291
+                <!-- <view class="contentTable">
292
+                  <text class="contentTitle">录音:</text>
293
+                  <text class="contentText">{{ item.F_RefuseReason }}</text>
294
+                </view> -->
295
+              </view>
296
+              <yiLine>
297
+                <view></view>
298
+              </yiLine>
299
+            </view>
300
+          </view>
301
+        </view>
302
+        <view v-show="current === 7">
303
+          <view class="detailContent">
304
+            <view class="contentBlock">
305
+              <text class="title">督办信息</text>
306
+              <view class="content" v-for="item in supervisoryInformationList" :key="item.F_Id">
307
+                <view class="contentTable">
308
+                  <text class="contentTitle">转督办人:</text>
309
+                  <text class="contentText">{{ item.F_CreateUser }}</text>
310
+                </view>
311
+                <view class="contentTable">
312
+                  <text class="contentTitle">督办原因:</text>
313
+                  <text class="contentText">{{ item.F_Remark }}</text>
314
+                </view>
315
+                <view class="contentTable">
316
+                  <text class="contentTitle">督办人:</text>
317
+                  <text class="contentText">{{ item.Supervisor }}</text>
318
+                </view>
319
+                <view class="contentTable">
320
+                  <text class="contentTitle">督办意见:</text>
321
+                  <text class="contentText">{{ item.F_Content }}</text>
322
+                </view>
323
+                <view class="contentTable">
324
+                  <text class="contentTitle">督办时间:</text>
325
+                  <text class="contentText">{{ item.F_CreateTime }}</text>
326
+                </view>
327
+              </view>
328
+              <yiLine>
329
+                <view></view>
330
+              </yiLine>
331
+            </view>
332
+          </view>
333
+        </view>
334
+        <view v-show="current === 8">
335
+          <view class="detailContent">
336
+            <view class="contentBlock">
337
+              <text class="title">市民催办</text>
338
+              <view class="content" v-for="item in citizensCuiBanList" :key="item.F_Id">
339
+                <view class="contentTable">
340
+                  <text class="contentTitle">催办内容:</text>
341
+                  <text class="contentText">{{ item.F_Content }}</text>
342
+                </view>
343
+                <view class="contentTable">
344
+                  <text class="contentTitle">催办时间:</text>
345
+                  <text class="contentText">{{ item.F_CreateTime }}</text>
346
+                </view>
347
+              </view>
348
+              <yiLine>
349
+                <view></view>
350
+              </yiLine>
351
+            </view>
352
+          </view>
353
+        </view>
354
+        <view v-show="current === 9">
355
+          <view class="detailContent">
356
+            <view class="contentBlock">
357
+              <text class="title">市民评议</text>
358
+              <view class="content" v-for="item in citizensReviewList" :key="item.F_Id">
359
+                <view class="contentTable">
360
+                  <text class="contentTitle">评议时间:</text>
361
+                  <text class="contentText">{{ item.CreateTime }}</text>
362
+                </view>
363
+                <view class="contentTable">
364
+                  <text class="contentTitle">评议类型:</text>
365
+                  <text class="contentText">{{ item.str_type | citizensReviewTypeFilters }}</text>
366
+                </view>
367
+                <view class="contentTable">
368
+                  <text class="contentTitle">满意度:</text>
369
+                  <text class="contentText">{{ item.strWrkOrder_Cst_Ssf_Cd }}</text>
370
+                </view>
371
+                <view class="contentTable">
372
+                  <text class="contentTitle">评议内容:</text>
373
+                  <text class="contentText">{{ item.strSsf_Cst_Ass_CntDsc }}</text>
374
+                </view>
375
+              </view>
376
+              <yiLine>
377
+                <view></view>
378
+              </yiLine>
379
+            </view>
380
+          </view>
381
+        </view>
382
+        <view v-show="current === 10">
383
+          <view class="detailContent">
384
+            <view class="contentBlock">
385
+              <text class="title">多媒体审核</text>
386
+              <view class="content" v-for="item in multimediaAuditList" :key="item.F_Id">
387
+                <view class="contentTable">
388
+                  <text class="contentTitle">审核人:</text>
389
+                  <text class="contentText">{{ item.AuditUser }}</text>
390
+                </view>
391
+                <view class="contentTable">
392
+                  <text class="contentTitle">承办单位:</text>
393
+                  <text class="contentText">{{ item.DeptNames }}</text>
394
+                </view>
395
+                <view class="contentTable">
396
+                  <text class="contentTitle">审核说明:</text>
397
+                  <text class="contentText">{{ item.F_Result }}</text>
398
+                </view>
399
+              </view>
400
+              <yiLine>
401
+                <view></view>
402
+              </yiLine>
403
+            </view>
404
+          </view>
405
+        </view>
175 406
       </view>
176 407
     </view>
177 408
   </view>
@@ -193,82 +424,16 @@ export default {
193 424
       twoAssignedInformation: [], // 二级交办信息
194 425
       threeAssignedInformation: [], // 三级交办信息
195 426
       backAuditList: [], // 退回审核
427
+      mayorInstructions: [], // 市长批示
428
+      workOrderRejectedList: [], // 工单驳回
429
+      delayAuditList: [], // 延时审核
430
+      returnInformationList: [], // 回访信息
431
+      supervisoryInformationList: [], // 督办信息
432
+      citizensCuiBanList: [], // 市民催办
433
+      citizensReviewList: [], // 市民评议
434
+      multimediaAuditList: [], // 多媒体审核
196 435
       current: 0,
197
-      items: ["工单信息", "交办信息", "市长批示", "工单驳回", "办理情况", "延时审核", "回访信息", "督办信息", "市民催办", "办理过程", "市民评议", "多媒体审核"],
198
-      File: [
199
-        {
200
-          "F_AddTime": "2021-12-08 16:40:34",
201
-          "F_FileId": 86595,
202
-          "F_FileName": "(20211208164033996)588812181.jpg",
203
-          "F_FileType": ".jpg",
204
-          "F_FileUrl": " http://docking.zwfw.anyang.gov.cn:9998/Upload/Files/2021/12/08/(20211208164033996)588812181.jpg",
205
-          "F_Size": 117990,
206
-          "F_UserCode": "10199"
207
-        },
208
-                {
209
-          "F_AddTime": "2021-12-08 16:40:34",
210
-          "F_FileId": 86595,
211
-          "F_FileName": "(20211208164033996)588812181.jpg",
212
-          "F_FileType": ".jpg",
213
-          "F_FileUrl": " http://docking.zwfw.anyang.gov.cn:9998/Upload/Files/2021/12/08/(20211208164033996)588812181.jpg",
214
-          "F_Size": 117990,
215
-          "F_UserCode": "10199"
216
-        },
217
-        {
218
-          "F_AddTime": "2021-12-08 16:40:34",
219
-          "F_FileId": 86595,
220
-          "F_FileName": "(20211208164033996)588812181.jpg",
221
-          "F_FileType": ".jpg",
222
-          "F_FileUrl": " http://docking.zwfw.anyang.gov.cn:9998/Upload/Files/2021/12/08/(20211208164033996)588812181.jpg",
223
-          "F_Size": 117990,
224
-          "F_UserCode": "10199"
225
-        },
226
-        {
227
-          "F_AddTime": "2021-12-08 16:40:34",
228
-          "F_FileId": 86595,
229
-          "F_FileName": "(20211208164033996)588812181.jpg",
230
-          "F_FileType": ".jpg",
231
-          "F_FileUrl": " http://docking.zwfw.anyang.gov.cn:9998/Upload/Files/2021/12/08/(20211208164033996)588812181.jpg",
232
-          "F_Size": 117990,
233
-          "F_UserCode": "10199"
234
-        },
235
-        {
236
-          "F_AddTime": "2021-12-08 16:40:34",
237
-          "F_FileId": 86595,
238
-          "F_FileName": "(20211208164033996)588812181.jpg",
239
-          "F_FileType": ".jpg",
240
-          "F_FileUrl": " http://docking.zwfw.anyang.gov.cn:9998/Upload/Files/2021/12/08/(20211208164033996)588812181.jpg",
241
-          "F_Size": 117990,
242
-          "F_UserCode": "10199"
243
-        },
244
-        {
245
-          "F_AddTime": "2021-12-08 16:40:34",
246
-          "F_FileId": 86595,
247
-          "F_FileName": "(20211208164033996)588812181.jpg",
248
-          "F_FileType": ".pdf",
249
-          "F_FileUrl": " http://docking.zwfw.anyang.gov.cn:9998/Upload/Files/2021/12/08/(20211208164033996)588812181.jpg",
250
-          "F_Size": 117990,
251
-          "F_UserCode": "10199"
252
-        },
253
-        {
254
-          "F_AddTime": "2021-12-08 16:40:34",
255
-          "F_FileId": 86595,
256
-          "F_FileName": "(20211208164033996)588812181.jpg",
257
-          "F_FileType": ".pdf",
258
-          "F_FileUrl": " http://docking.zwfw.anyang.gov.cn:9998/Upload/Files/2021/12/08/(20211208164033996)588812181.jpg",
259
-          "F_Size": 117990,
260
-          "F_UserCode": "10199"
261
-        },
262
-        {
263
-          "F_AddTime": "2021-12-08 16:40:34",
264
-          "F_FileId": 86595,
265
-          "F_FileName": "(20211208164033996)588812181.jpg",
266
-          "F_FileType": ".pdf",
267
-          "F_FileUrl": " http://docking.zwfw.anyang.gov.cn:9998/Upload/Files/2021/12/08/(20211208164033996)588812181.jpg",
268
-          "F_Size": 117990,
269
-          "F_UserCode": "10199"
270
-        },
271
-      ]
436
+      items: ["工单信息", "交办信息", "市长批示", "工单驳回", "办理情况", "延时审核", "回访信息", "督办信息", "市民催办", "市民评议", "多媒体审核"],
272 437
     }
273 438
   },
274 439
   onLoad(option) {
@@ -305,6 +470,22 @@ export default {
305 470
               this.twoAssignedInformation = data.jbdata;
306 471
               this.threeAssignedInformation = data.ejjbdata;
307 472
               this.backAuditList = data.thdata;
473
+            } else if (String(type) === "2") {
474
+              this.mayorInstructions = data;
475
+            } else if (String(type) === "3") {
476
+              this.workOrderRejectedList = data;
477
+            } else if (String(type) === "5") {
478
+              this.delayAuditList = data;
479
+            } else if (String(type) === "6") {
480
+              this.returnInformationList = data;
481
+            } else if (String(type) === "7") {
482
+              this.supervisoryInformationList = data;
483
+            } else if (String(type) === "8") {
484
+              this.citizensCuiBanList = data;
485
+            } else if (String(type) === "9") {
486
+              this.citizensReviewList = data;
487
+            } else if (String(type) === "13") {
488
+              this.multimediaAuditList = data;
308 489
             }
309 490
           }
310 491
         })
@@ -319,6 +500,38 @@ export default {
319 500
           // 获取交办信息
320 501
           this.getDetail("1");
321 502
           break;
503
+        case 2:
504
+          // 市长批示
505
+          this.getDetail("2");
506
+          break;
507
+        case 3:
508
+          // 工单驳回
509
+          this.getDetail("3");
510
+          break;
511
+        case 5:
512
+          // 延时审核
513
+          this.getDetail("5");
514
+          break;
515
+        case 6:
516
+          // 回访信息
517
+          this.getDetail("6");
518
+          break;
519
+        case 7:
520
+          // 督办信息
521
+          this.getDetail("7");
522
+          break;
523
+        case 8:
524
+          // 市民催办
525
+          this.getDetail("8");
526
+          break;
527
+        case 9:
528
+          // 市民评议
529
+          this.getDetail("10");
530
+          break;
531
+        case 10:
532
+          // 多媒体审核
533
+          this.getDetail("13");
534
+          break;
322 535
         default:
323 536
           break;
324 537
       }
@@ -462,6 +675,75 @@ export default {
462 675
           break;
463 676
       }
464 677
       return str;
678
+    },
679
+    delayAuditFilters(value) {
680
+      let str;
681
+      switch(String(value)) {
682
+        case "1":
683
+          str = "同意";
684
+          break;
685
+        case "2":
686
+          str = "拒绝";
687
+          break;
688
+        default:
689
+          str = "未审核";
690
+          break;
691
+      }
692
+      return str;
693
+    },
694
+    returnTypeFilters(value) {
695
+      let str;
696
+      switch(String(value)) {
697
+        case "0":
698
+          str = "电话";
699
+          break;
700
+        case "1":
701
+          str = "微信";
702
+          break;
703
+        case "2":
704
+          str = "APP";
705
+          break;
706
+        case "3":
707
+          str = "网站";
708
+          break;
709
+        case "4":
710
+          str = "微博";
711
+          break;
712
+        case "5":
713
+          str = "信箱";
714
+          break;
715
+        default:
716
+          str = "";
717
+          break;
718
+      }
719
+      return str;
720
+    },
721
+    returnIsSatisfieFilters(value) {
722
+      let str;
723
+      switch(String(value)) {
724
+        case "0":
725
+          str = "不满意";
726
+          break;
727
+        case "1":
728
+          str = "满意";
729
+          break;
730
+        default:
731
+          str = "";
732
+          break;
733
+      }
734
+      return str;
735
+    },
736
+    citizensReviewTypeFilters(value) {
737
+      let str;
738
+      switch(String(value)) {
739
+        case "1":
740
+          str = "短信评议";
741
+          break;
742
+        default:
743
+          str = "网站评议";
744
+          break;
745
+      }
746
+      return str;
465 747
     }
466 748
   }
467 749
 }