miaofuhao 4 gadi atpakaļ
vecāks
revīzija
8fab480ca1

+ 34 - 17
WebUI/CallCenterWeb.UI/Announcement/AnnDatil.html

@@ -233,24 +233,41 @@
233 233
                 }
234 234
 
235 235
             })
236
-            if (wid) {
237
-                $.getJSON(huayi.config.callcenter_url + 'Notice/GetNotice', {
238
-                    noticeid: wid,
239
-                    "token": $.cookie("token")
240
-                }, function (result) {
241
-                    if (result.state.toLowerCase() == "success") {
242
-                        $("#title").val(result.data.F_Title);
243
-                        //$("#content").val(result.data.F_Content);
244
-                        $('#greetingTimes').val(result.data.F_StartDate + ' ~ ' + result.data
245
-                        .F_EndDate);
246
-                        $('#role').val(result.data.F_RoleId);
247
-                        $("#zx").val(result.data.F_UserId);
248
-
249
-                        editor.html(result.data.F_Content);
250
-                    }
251
-                });
252
-            }
236
+            
237
+            setTimeout(function(){
238
+            	Detail()
239
+            },1000)
240
+            
241
+            
253 242
         })
243
+        function Detail(){
244
+        	if (wid) {
245
+            	debugger
246
+            	$.ajax({
247
+            		type:"get",
248
+            		url:huayi.config.callcenter_url + 'Notice/GetNotice',
249
+            		dataType:'json',
250
+            		async:false,
251
+            		data:{
252
+            			noticeid: wid,
253
+                    	"token": $.cookie("token")
254
+            		},
255
+            		success:function(result){
256
+            			debugger
257
+            			if (result.state.toLowerCase() == "success") {
258
+	                        $("#title").val(result.data.F_Title);
259
+	                        //$("#content").val(result.data.F_Content);
260
+	                        $('#greetingTimes').val(result.data.F_StartDate + ' ~ ' + result.data
261
+	                        .F_EndDate);
262
+	                        $('#role').val(result.data.F_RoleId);
263
+	                        $("#zx").val(result.data.F_UserId);
264
+	
265
+	                        editor.html(result.data.F_Content);
266
+	                    }
267
+            		}
268
+            	})
269
+            }
270
+        }
254 271
         ////获取下拉框
255 272
         //				$.getJSON(huayi.config.callcenter_url + "Notice/GetRoleList", {
256 273
         //					"token": $.cookie("token")

+ 6 - 5
WebUI/CallCenterWeb.UI/Business/LeaderYJA.html

@@ -390,14 +390,14 @@
390 390
                                         <option value="1">满意</option>
391 391
                                     </select>
392 392
                                 </td>
393
-                                <th>结案满意度:</th>
393
+                                <!--<th>结案满意度:</th>
394 394
                                 <td>
395 395
                                     <select id="F_IsSatisfie" style="width: 260px;" name="select" class="form-control" data-live-search="true">
396 396
                                         <option value="">请选择</option>
397 397
                                         <option value="0">不满意</option>
398 398
                                         <option value="1">满意</option>
399 399
                                     </select>
400
-                                </td>
400
+                                </td>-->
401 401
                                 <th style="text-align: center;">
402 402
                                 	
403 403
                                 </th>
@@ -555,7 +555,7 @@
555 555
                         sourcearea: $('#sourceAreas').val(), //区域
556 556
                         dealtype: $("#dealtype").val(),
557 557
                         Issatisfie: $("#Issatisfie").val(),
558
-                        F_IsSatisfie: $("#F_IsSatisfie").val(),
558
+                        //F_IsSatisfie: $("#F_IsSatisfie").val(),
559 559
                         token: $.cookie("token")
560 560
                     };
561 561
                     return param;
@@ -1104,11 +1104,12 @@
1104 1104
             var tab = 5;
1105 1105
             var keyid = $("#keyid").val() //=关键词id
1106 1106
             var dealtype = $("#dealtype").val()
1107
-            var F_IsSatisfie = $("#F_IsSatisfie").val()
1107
+            //var F_IsSatisfie = $("#F_IsSatisfie").val()
1108 1108
             var Issatisfie = $("#Issatisfie").val()
1109 1109
 
1110 1110
 
1111 1111
             var url = huayi.config.callcenter_url + "WorkOrder/GetLDDealList?token=" + $.cookie("token");
1112
+//          + "&F_IsSatisfie=" + F_IsSatisfie
1112 1113
             url += "&workid=" + workid + "&state=" + state + "&type=" + type + "&tab=" + tab + "&key=" + key +
1113 1114
                 "&tel=" +
1114 1115
                 tel + "&name=" + name + "&usercode=" + usercode + "&ddusercode=" + ddusercode + "&source=" +
@@ -1117,7 +1118,7 @@
1117 1118
                 "&sourcearea=" +
1118 1119
                 sourcearea +
1119 1120
                 "&bigtype=" + bigtype + "&smalltype=" + smalltype + "&keyid=" + keyid + "&dealtype=" +
1120
-                dealtype + "&Issatisfie=" + Issatisfie+ "&F_IsSatisfie=" + F_IsSatisfie + "&isdc=1";
1121
+                dealtype + "&Issatisfie=" + Issatisfie + "&isdc=1";
1121 1122
             window.location.href = url;
1122 1123
         })
1123 1124
     </script>