liuyifan 4 anni fa
parent
commit
6832cc1db3

+ 32 - 1
WebUI/CallCenterWeb.UI/Appeal/Lawsuit.html

@@ -345,7 +345,10 @@
345 345
                                 </td>
346 346
                                 <th>时间:</th>
347 347
                                 <td colspan="3">
348
-                                    <input id="starttime" class="photo x-color laydate-icon" type="text" autocomplete="off" style="height: 35px;" />-<input id="endtime" class="photo x-color laydate-icon" type="text" autocomplete="off" style="height: 35px;" />
348
+                                    <input id="starttime" class="photo x-color laydate-icon" type="text"
349
+                                        autocomplete="off" style="height: 35px;" />-<input id="endtime"
350
+                                        class="photo x-color laydate-icon" type="text" autocomplete="off"
351
+                                        style="height: 35px;" />
349 352
                                 </td>
350 353
                             </tr>
351 354
                             <tr>
@@ -1137,6 +1140,34 @@
1137 1140
                 area: ["60%", "80%"], //宽高
1138 1141
             });
1139 1142
         }
1143
+        //退回
1144
+        function returnRedo(str) {
1145
+            layer.open({
1146
+                type: 2,
1147
+                content: "../CommonHtml/returnRedo.html?wid=" + str, //iframe的url,no代表不显示滚动条
1148
+                title: "退回",
1149
+                area: ["50%", "40%"], //宽高
1150
+            });
1151
+        }
1152
+        //退回
1153
+        function returnAuditor(str) {
1154
+            layer.open({
1155
+                type: 2,
1156
+                content: "../CommonHtml/returnAuditor.html?wid=" + str, //iframe的url,no代表不显示滚动条
1157
+                title: "退回",
1158
+                area: ["50%", "40%"], //宽高
1159
+            });
1160
+        }
1161
+        //修改
1162
+        function editProcessingResult(str) {
1163
+            layer.open({
1164
+                type: 2,
1165
+                content: "../CommonHtml/editProcessingResult.html?wid=" + str, //iframe的url,no代表不显示滚动条
1166
+                title: "修改",
1167
+                area: ["50%", "40%"], //宽高
1168
+            });
1169
+        }
1170
+
1140 1171
         //上传文件
1141 1172
         function upload() {
1142 1173
             if (document.getElementById("upFile").files.length > 0) {

+ 5 - 4
WebUI/CallCenterWeb.UI/CommonHtml/editProcessingResult.html

@@ -100,15 +100,16 @@
100 100
                 success: function (result) {
101 101
                     if (result.state.toLowerCase() == "success") {
102 102
                         var content = result.data;
103
-                        var bldataLength = content.bldata.length
103
+                        // var bldataLength = content.bldata.length
104 104
                         if (content.data[0].F_Content === "" || content.data[0].F_Content === null) {
105 105
                             $("#content").text(content.data[0].F_ComContent)
106 106
                         } else {
107 107
                             $("#content").text(content.data[0].F_Content)
108 108
                         }
109
-                        if ( bldataLength > 0) {
110
-                            $("#result").val(content.bldata[bldataLength - 1].F_Result)
111
-                        }
109
+                        $("#result").val(content.data[0].F_Result)
110
+                        // if ( bldataLength > 0) {
111
+                        //     $("#result").val(content.bldata[bldataLength - 1].F_Result)
112
+                        // }
112 113
                     }
113 114
                 }
114 115
             })

+ 31 - 1
WebUI/CallCenterWeb.UI/MultimediaWorkOrder/LawsuitMedia.html

@@ -345,7 +345,10 @@
345 345
                                 </td>
346 346
                                 <th>时间:</th>
347 347
                                 <td colspan="3">
348
-                                    <input id="starttime" class="photo x-color laydate-icon" type="text" autocomplete="off" style="height: 35px;" />-<input id="endtime" class="photo x-color laydate-icon" type="text" autocomplete="off" style="height: 35px;" />
348
+                                    <input id="starttime" class="photo x-color laydate-icon" type="text"
349
+                                        autocomplete="off" style="height: 35px;" />-<input id="endtime"
350
+                                        class="photo x-color laydate-icon" type="text" autocomplete="off"
351
+                                        style="height: 35px;" />
349 352
                                 </td>
350 353
                             </tr>
351 354
                             <tr>
@@ -1139,6 +1142,33 @@
1139 1142
                 area: ["60%", "80%"], //宽高
1140 1143
             });
1141 1144
         }
1145
+        //退回
1146
+        function returnRedo(str) {
1147
+            layer.open({
1148
+                type: 2,
1149
+                content: "../CommonHtml/returnRedo.html?wid=" + str, //iframe的url,no代表不显示滚动条
1150
+                title: "退回",
1151
+                area: ["50%", "40%"], //宽高
1152
+            });
1153
+        }
1154
+        //退回
1155
+        function returnAuditor(str) {
1156
+            layer.open({
1157
+                type: 2,
1158
+                content: "../CommonHtml/returnAuditor.html?wid=" + str, //iframe的url,no代表不显示滚动条
1159
+                title: "退回",
1160
+                area: ["50%", "40%"], //宽高
1161
+            });
1162
+        }
1163
+        //修改
1164
+        function editProcessingResult(str) {
1165
+            layer.open({
1166
+                type: 2,
1167
+                content: "../CommonHtml/editProcessingResult.html?wid=" + str, //iframe的url,no代表不显示滚动条
1168
+                title: "修改",
1169
+                area: ["50%", "40%"], //宽高
1170
+            });
1171
+        }
1142 1172
         //上传文件
1143 1173
         function upload() {
1144 1174
             if (document.getElementById("upFile").files.length > 0) {

+ 1 - 1
WebUI/CallCenterWeb.UI/Script/Common/huayi.config.js

@@ -28,7 +28,7 @@ huayi.config = {
28 28
         "<a class='xg' onclick='shys(\"data\")' title='延时审核'>延时审核</a>", //延时审核
29 29
         "<a class='xg' onclick='cb(\"data\")' title='重办'>重办</a>", //重办
30 30
         "<a class='xg' onclick='Lawsuit(\"data\")' title='结案'>结案</a>", //结案
31
-        "<a class='xg'  title='导出'>导出</a>", //导出
31
+        "<a class='xg' title='导出'>导出</a>", //导出
32 32
         "<a class='xg' onclick='BackDtail(\"data\")'   title='回退'>回退</a>", //回退
33 33
         "<a class='xg' onclick='StrongLawsuit(\"data\")' title='强制结案'>强制结案</a>", //结案
34 34
         "<a class='xg' onclick='pd(\"data\")' title='派单'>派单</a>", //派单