Browse Source

mod:更新

miaofuhao 2 years ago
parent
commit
af4d5d7790

+ 0 - 1
WebChartNewest/index.html

@@ -920,5 +920,4 @@
920 920
 <script src="js/newAdd/timetype.js"></script>
921 921
 <!-- 2023-06-06 坐席监控修改 -->
922 922
 <script src="js/newSeats.js"></script>
923
-
924 923
 </html>

+ 127 - 180
WebChartNewest/js/trafficData.js

@@ -6,9 +6,9 @@ $('.btn_time').click(function(e) {
6 6
 			$('.timeTraffic').css('display', 'inline-block')
7 7
 			$('#traffic').css('display', 'none')
8 8
 			$('#timeTraffic').css('display', 'block')
9
-			$(this).siblings(".act").children("label").attr("indexTitle","日话务数据统计1")
10
-			
11
-//			$(".act").attr("indexTitle","日话务数据统计1")
9
+			$(this).siblings(".act").children("label").attr("indexTitle", "日话务数据统计1")
10
+
11
+			//			$(".act").attr("indexTitle","日话务数据统计1")
12 12
 			$('.call_situation h2').text('话务数据统计')
13 13
 			trafficDataChart('timeTraffic', ['登陆坐席数量1', '呼叫排队数量1', '话务量1', '呼入接通量1'], callDate, callDate[0])
14 14
 			trafficState = 0
@@ -23,78 +23,72 @@ function trafficDataChart(dom, data, count, count1, rotate = 0) {
23 23
 	window.onresize = function() {
24 24
 		hotThings.resize()
25 25
 	}
26
-	
27 26
 	const labelOption = {
28 27
 		show: true,
29
-rotate: 90,
30
-  align: 'left',
31
-  verticalAlign: 'middle',
32
-  position: 'insideBottom',
33
-  //distance: 15,
34
-  //formatter: '{c}  {name|{a}}',
35
-  
36
-  formatter: () => {
37
-  	console.log('{c}' ,'c')
38
-  },
39
-  
40
-  //fontSize: 16,
41
-  rich: {
42
-    name: {}
43
-  }
44
-//		normal: {
45
-//      formatter: function(params) {
46
-//          // 可以打印自己看一下, 其实params就是每根柱子的对象
47
-//          console.info(params);
48
-//          var html = '';
49
-//          if (params.value > 0) {
50
-//              // 千万不要html += '';
51
-//              html = params.value + '次  ' + params.seriesName;
52
-//              return html;
53
-//          }
54
-//          // 没有数据的返回'' 不是返回0
55
-//          return html;
56
-//      },
57
-//   }
28
+		rotate: 90,
29
+		align: 'left',
30
+		verticalAlign: 'middle',
31
+		position: 'insideBottom',
32
+		//distance: 15,
33
+		//formatter: '{c}  {name|{a}}',
34
+		formatter: () => {
35
+			console.log('{c}', 'c')
36
+		},
37
+		//fontSize: 16,
38
+		rich: {
39
+			name: {}
40
+		}
41
+		//		normal: {
42
+		//      formatter: function(params) {
43
+		//          // 可以打印自己看一下, 其实params就是每根柱子的对象
44
+		//          console.info(params);
45
+		//          var html = '';
46
+		//          if (params.value > 0) {
47
+		//              // 千万不要html += '';
48
+		//              html = params.value + '次  ' + params.seriesName;
49
+		//              return html;
50
+		//          }
51
+		//          // 没有数据的返回'' 不是返回0
52
+		//          return html;
53
+		//      },
54
+		//   }
58 55
 	};
59
-	
56
+
60 57
 	option = {
61
-//		tooltip: {
62
-//			trigger: 'axis',
63
-//			axisPointer: {
64
-//				type: 'shadow'
65
-//			},
66
-//		},
58
+		//		tooltip: {
59
+		//			trigger: 'axis',
60
+		//			axisPointer: {
61
+		//				type: 'shadow'
62
+		//			},
63
+		//		},
67 64
 		tooltip: {
68 65
 			trigger: 'item',
69
-//			trigger: 'axis',
70
-		  	show: true,
71
-		  	// 进行数据处理
72
-            formatter: function (params) {
73
-                console.log(params, 'params')
74
-                var html = '';
75
-                if (params.value > 0) {
76
-                	
77
-                	html += params.marker;
78
-                	if (params.name.indexOf('率') >=0) {
79
-                		html += params.seriesName + ': ' + params.value + '%<br/>';
80
-                	} else {
81
-                		html += params.seriesName + ': ' + params.value + '<br/>';
82
-                	}
83
-                    
84
-                }
85
-                
86
-                return html;
87
-            }
66
+			//			trigger: 'axis',
67
+			show: true,
68
+			// 进行数据处理
69
+			formatter: function(params) {
70
+				console.log(params, 'params')
71
+				var html = '';
72
+				if(params.value > 0) {
73
+					html += params.marker;
74
+					if(params.name.indexOf('率') >= 0) {
75
+						html += params.seriesName + ': ' + params.value + '%<br/>';
76
+					} else {
77
+						html += params.seriesName + ': ' + params.value + '<br/>';
78
+					}
79
+				}
80
+				return html;
81
+			}
88 82
 		},
89
-//		legend: {
90
-//			textStyle: {
91
-//				fontSize: 12, //字体大小
92
-//				color: '#ffffff' //字体颜色
93
-//			},
94
-//			lineStyle: {
95
-//				color: '#ffffff'
96
-//			}
97
-//		},
83
+		//		legend: {
84
+		//			textStyle: {
85
+		//				fontSize: 12, //字体大小
86
+		//				color: '#ffffff' //字体颜色
87
+		//			},
88
+		//			lineStyle: {
89
+		//				color: '#ffffff'
90
+		//			}
91
+		//		},
98 92
 		grid: {
99 93
 			left: '3%',
100 94
 			right: '4%',
@@ -103,137 +97,90 @@ rotate: 90,
103 97
 		},
104 98
 		xAxis: [{
105 99
 			type: 'category',
106
-			axisLine:{
107
-				lineStyle:{
108
-					color:'#ffffff'
100
+			axisLine: {
101
+				lineStyle: {
102
+					color: '#ffffff'
109 103
 				}
110 104
 			},
111 105
 			axisLabel: {
112 106
 				show: true,
113 107
 				rotate: -30, // 角度值:Number
114
-                fontSize: 11, // 顺便调小一点字体大小
108
+				fontSize: 11, // 顺便调小一点字体大小
115 109
 				textStyle: {
116 110
 					color: '#ffffff'
117 111
 				}
118 112
 			},
119
-			data: ['呼入量', '接通量', '呼入接通率', '呼出量', '呼出接通量', '呼出接通率']
113
+			data: ['呼入量\r\n     接通量', '呼入接通率', '呼出量\r\n   呼出接通量', '呼出接通率']
120 114
 		}],
121
-//		tooltip: {
122
-//		  show: true,
123
-//		},
124
-		yAxis: [
125
-		{
126
-			type: 'value',
127
-			axisLine:{
128
-				lineStyle:{
129
-					color:'#ffffff'
130
-				}
115
+		yAxis: [{
116
+				type: 'value',
117
+				axisLine: {
118
+					lineStyle: {
119
+						color: '#ffffff'
120
+					}
121
+				},
122
+				//			interval: 5,
123
+				//			splitLine:{ show:false} ,
124
+				//	        axisLine: {show: false}, 
125
+				//	        axisTick: {show: false}
131 126
 			},
132
-//			interval: 5,
133
-//			splitLine:{ show:false} ,
134
-//	        axisLine: {show: false}, 
135
-//	        axisTick: {show: false}
136
-		},
137
-		{
138
-			type: 'value',
139
-			axisLine:{
140
-				lineStyle:{
141
-					color:'#ffffff'
127
+			{
128
+				type: 'value',
129
+				axisLine: {
130
+					lineStyle: {
131
+						color: '#ffffff'
132
+					}
133
+				},
134
+				splitLine: {
135
+					show: false
136
+				},
137
+				min: 0,
138
+				max: 100,
139
+				axisLabel: {
140
+					formatter: '{value} 100%'
142 141
 				}
143
-			},
144
-//			interval: 5,
145
-			splitLine:{ show:false} ,
146
-			min: 0,
147
-		    max: 100,
148
-		    axisLabel: {
149
-		    	formatter: '{value} 100%'
150
-		    }
151
-		}
142
+			}
152 143
 		],
153 144
 		series: [{
154 145
 				name: '呼入量',
155 146
 				type: 'bar',
156
-				stack: 'A',
157
-				barWidth : 15,
158
-				label: labelOption,
159
-				data: [320,0,0,0,0,0]
160
-			},
161
-			{
162
-				name: '未接通回拨量',
163
-				type: 'bar',
164
-				stack: 'A',
165
-				barWidth : 15,
166
-				label: labelOption,
167
-				data: [0,20,0,0,0,0]
168
-			},
169
-			{
170
-				name: '自助接听量',
171
-				type: 'bar',
172
-				stack: 'A',
173
-				barWidth : 15,
174
-				label: labelOption,
175
-				data: [0,80,0,0,0,0]
176
-			},
177
-			{
178
-				name: '人工接通量',
179
-				type: 'bar',
180
-				stack: 'A',
181
-				barWidth : 15,
147
+				barGap: 0,
182 148
 				label: labelOption,
183
-				data: [0,220,0,0,0,0]
149
+				emphasis: {
150
+					focus: 'series'
151
+				},
152
+				data: [320, 332, 301, 334]
184 153
 			},
185 154
 			{
186
-				name: '回拨率',
187
-				type: 'bar',
188
-				stack: 'A',
189
-				yAxisIndex: 1,
190
-				barWidth : 15,
191
-				label: labelOption,
192
-				data: [0,0,20,0,0,0]
193
-			},
194
-			{
195
-				name: '自助率',
196
-				type: 'bar',
197
-				stack: 'A',
198
-				yAxisIndex: 1,
199
-				barWidth : 15,
200
-				label: labelOption,
201
-				data: [0,0,30,0,0,0]
202
-			},
203
-			{
204
-				name: '人工率',
205
-				type: 'bar',
206
-				stack: 'A',
207
-				yAxisIndex: 1,
208
-				barWidth : 15,
209
-				label: labelOption,
210
-				data: [0,0,50,0,0,0]
211
-			},
212
-			{
213
-				name: '呼出量',
214
-				type: 'bar',
215
-				stack: 'A',
216
-				barWidth : 15,
217
-				label: labelOption,
218
-				data: [0,0,0,150,0,0]
219
-			},
220
-			{
221
-				name: '呼出接通量',
222
-				type: 'bar',
223
-				stack: 'A',
224
-				barWidth : 15,
225
-				label: labelOption,
226
-				data: [0,0,0,0,150,0]
227
-			},
228
-			{
229
-				name: '呼出接通率',
230
-				type: 'bar',
231
-				stack: 'A',
232
-				yAxisIndex: 1,
233
-				barWidth :15,
234
-				label: labelOption,
235
-				data: [0,0,0,0,0,99]
236
-			},
155
+		      name: '未接通回拨量',
156
+		      type: 'bar',
157
+		      stack: 'Ad',
158
+		      label: labelOption,
159
+		      emphasis: {
160
+		        focus: 'series'
161
+		      },
162
+		      data: [120, 0, 191, 0]
163
+		    },
164
+		    {
165
+		      name: '自助接通量',
166
+		      type: 'bar',
167
+		      stack: 'Ad',
168
+		      label: labelOption,
169
+		      emphasis: {
170
+		        focus: 'series'
171
+		      },
172
+		      data: [220, 0, 0, 0]
173
+		    },
174
+		    {
175
+		      name: '人工接通',
176
+		      type: 'bar',
177
+		      stack: 'Ad',
178
+		      label: labelOption,
179
+		      emphasis: {
180
+		        focus: 'series'
181
+		      },
182
+		      data: [150, 0, 0, 0]
183
+		    }
237 184
 		]
238 185
 	};
239 186
 	hotThings.setOption(option);

BIN
WebUI/0608更新CallCenterWeb.UI.7z


+ 27 - 0
WebUI/CallCenterWeb.UI/.project

@@ -123,5 +123,32 @@
123 123
 				<arguments>1.0-name-matches-false-false-node_modules</arguments>
124 124
 			</matcher>
125 125
 		</filter>
126
+		<filter>
127
+			<id>1686205291532</id>
128
+			<name></name>
129
+			<type>26</type>
130
+			<matcher>
131
+				<id>org.eclipse.ui.ide.multiFilter</id>
132
+				<arguments>1.0-name-matches-false-false-node_modules</arguments>
133
+			</matcher>
134
+		</filter>
135
+		<filter>
136
+			<id>1686205366359</id>
137
+			<name></name>
138
+			<type>26</type>
139
+			<matcher>
140
+				<id>org.eclipse.ui.ide.multiFilter</id>
141
+				<arguments>1.0-name-matches-false-false-node_modules</arguments>
142
+			</matcher>
143
+		</filter>
144
+		<filter>
145
+			<id>1686205851865</id>
146
+			<name></name>
147
+			<type>26</type>
148
+			<matcher>
149
+				<id>org.eclipse.ui.ide.multiFilter</id>
150
+				<arguments>1.0-name-matches-false-false-node_modules</arguments>
151
+			</matcher>
152
+		</filter>
126 153
 	</filteredResources>
127 154
 </projectDescription>

+ 15 - 6
WebUI/CallCenterWeb.UI/Business/workDelayedAudit.html

@@ -20,8 +20,8 @@
20 20
                 <sapn>
21 21
                     <i class="syIcon"></i>位置:
22 22
                     <a href="javaScript:;" id="ReIndex">首页</a>&gt;
23
-                    <a href="javaScript:;">办理单位</a>&gt;
24
-                    <a href="" class="nowPosition">待办事项</a>
23
+                    <a href="javaScript:;" class="secondTab">办理单位</a>&gt;
24
+                    <a href="" class="nowPosition">延时审核</a>
25 25
                 </sapn>
26 26
             </div>
27 27
             <div class="dhRight">
@@ -111,7 +111,7 @@
111 111
                                     <botton class="btns exportFile">导出</botton>
112 112
                                 </td>
113 113
                             </tr>
114
-                            <tr>
114
+                            <tr class="strworkorderBox">
115 115
                             	<th>省平台编号:</th>
116 116
                                 <td>
117 117
                                     <input type="text" placeholder="输入工单号" id="strworkorderid" class="form-control" />
@@ -192,15 +192,23 @@
192 192
 
193 193
     <script>
194 194
         var level = helper.request.queryString("level");
195
+        var jianhang = helper.request.queryString("jianhang");
195 196
         var tab
196 197
         var exportParams; // 导出参数
197
-
198 198
         $(document).ready(function () {
199
-        	if (level==="1"||level==="2") {
199
+        	console.log(level)
200
+        	console.log(jianhang)
201
+        	if (level==="1") {
202
+        		tab = 9
203
+        		$(".secondTab").hide()
204
+        		$(".strworkorderBox").hide()
205
+        		$(".nowPosition").html("延时审核")
206
+        	} else if(level==="2"){
200 207
         		tab = 9
201
-        	} else{
208
+        	} else if(level==="3"){
202 209
         		tab = 8
203 210
         	}
211
+        	
204 212
             load();
205 213
             laydate.skin("blue");
206 214
             laydate({
@@ -295,6 +303,7 @@
295 303
                         type: $("#type").val(),
296 304
                         tab: tab, //待处理
297 305
                         distribute: 0,
306
+                        jianhang: jianhang,
298 307
                         sourcearea: $("#sourceAreas").val(), //区域
299 308
                         strworkorderid:$("#strworkorderid").val().replace(/\s+/g, ""),
300 309
                         // isys: 0, // 未延时待办理

+ 35 - 12
WebUI/CallCenterWeb.UI/CommonHtml/WorkDatil.html

@@ -401,6 +401,8 @@
401 401
 						<!--&nbsp;&nbsp;<input type="button" class="change release authority" value="修改" />-->
402 402
 						<!--&nbsp;&nbsp;<input type="button" class="return release authority" style="display: none;" value="退回申请" />-->
403 403
 						&nbsp;&nbsp;<input type="button" class="applicationDelay" style="display: none;" value="申请延时" />
404
+						<input type="button" class="provincialApplicationDelay" style="display: none;" value="省平台申请延时" />
405
+						<!--provincialPlatformApplicationDelay(str,type)-->
404 406
 						<!--<input type="button" class="handle release authority" style="display: none;" value="办理" />-->
405 407
 						<input type="button" value="打印预览" class="print" />
406 408
 						<input type="button" value="撤销子工单" class="cancelChildWorkOrder" style="display: none;" />
@@ -1001,16 +1003,19 @@
1001 1003
 										var WorkOrderId = Data[0].F_WorkOrderId;
1002 1004
 										var btnhtml = '';
1003 1005
 										for(var i = 0; i < Rows.length; i++) {
1004
-											var html1 = huayi.config.arr[Rows[i].key * 1 - 1];
1005
-											if(html1) {
1006
-												html1 = html1.replace("data", Data[0].F_WorkOrderId);
1006
+											if (Rows[i].key === 48) {
1007
+												$(".provincialApplicationDelay").show()
1007 1008
 											}
1008
-											btnhtml += html1;
1009
+//											var html1 = huayi.config.arr[Rows[i].key * 1 - 1];
1010
+//											if(html1) {
1011
+//												html1 = html1.replace("data", Data[0].F_WorkOrderId);
1012
+//											}
1013
+//											btnhtml += html1;
1009 1014
 
1010 1015
 										}
1011 1016
 										if(Data[0].F_InfoSource==2580){
1012 1017
 											$(".addnewTimebox").show()
1013
-											$(".strworkorderid").text(Data[0].strworkorderid)
1018
+											$(".strworkorderid").text(Data[0].CASE_SERIAL)
1014 1019
 											$(".applicationDelay").hide()
1015 1020
 											$(".provinceAssign").show()
1016 1021
 											$(".provinceAssignResult").text(Data[0].SEND_CONTENT)
@@ -1087,12 +1092,8 @@
1087 1092
 										if(Data[0].F_CusName) {
1088 1093
 											if(roleCode !== "WLDW" && roleCode !== "EJWLDW") {
1089 1094
 												$(".F_CusName").hide()
1090
-											} else {
1091
-												$(".callerTitle").unbind("click");
1092 1095
 											}
1093 1096
 											callerName = Data[0].F_CusName
1094
-										} else {
1095
-											$(".callerTitle").unbind("click");
1096 1097
 										}
1097 1098
 										if(String(Data[0].F_Business) === "1") {
1098 1099
 											$(".threeWayCall").text("是");
@@ -1305,7 +1306,6 @@
1305 1306
 										var jbxx = '';
1306 1307
 										$(".JBXX").empty();
1307 1308
 										$(result.data.jbdata).each(function(i, n) {
1308
-											//debugger;
1309 1309
 											var OtherDeptName = n.OtherDeptName == null ? '-' :
1310 1310
 												n
1311 1311
 												.OtherDeptName;
@@ -2333,6 +2333,20 @@
2333 2333
 				})
2334 2334
 			});
2335 2335
 			
2336
+			$(".provincialApplicationDelay").click(function(){
2337
+				provincialPlatformApplicationDelay(wid,0)
2338
+			})
2339
+			// 省平台申请延时
2340
+			function provincialPlatformApplicationDelay(str,type) {
2341
+			    layer.open({
2342
+			        type: 2,
2343
+			        content:
2344
+			            "../CommonHtml/provincialPlatformApplicationDelay.html?wid=" + str+"&type="+type, //iframe的url,no代表不显示滚动条
2345
+			        title: "省平台申请延时",
2346
+			        area: ["70%", "70%"], //宽高
2347
+			        shade: 0,
2348
+			    });
2349
+			}
2336 2350
 			function getIntelligentOutboundCallUrl(){
2337 2351
 				$.ajax({
2338 2352
 					type:"get",
@@ -2360,16 +2374,25 @@
2360 2374
 			}
2361 2375
 
2362 2376
 			$(".phoneTitle").click(function() {
2377
+				var isSecret
2378
+				if ($('.MJ').text()=="普通") {
2379
+					isSecret = 1
2380
+				} else{
2381
+					isSecret = 2
2382
+				}
2363 2383
 				layer.open({
2364 2384
 					type: 2,
2365
-					content: "./callerNumber.html?phoneNumber=" + encodeURIComponent(
2366
-						phoneNumber), //iframe的url,no代表不显示滚动条
2385
+					content: "./callerNumber.html?phoneNumber=" + encodeURIComponent(phoneNumber)+"&wid="+wid+"&isSecret="+isSecret, //iframe的url,no代表不显示滚动条
2367 2386
 					title: "来电号码",
2368 2387
 					area: ["40%", "25%"], //宽高
2369 2388
 				});
2370 2389
 			})
2371 2390
 
2372 2391
 			$(".callerTitle").click(function() {
2392
+				if($(".F_CusName").text()===""){
2393
+					layer.msg('来电人姓名为空')
2394
+					return
2395
+				}
2373 2396
 				layer.open({
2374 2397
 					type: 2,
2375 2398
 					content: "./callerName.html?callerName=" + callerName+"&wid="+wid, //iframe的url,no代表不显示滚动条

+ 32 - 57
WebUI/CallCenterWeb.UI/CommonHtml/callerName.html

@@ -1,63 +1,38 @@
1 1
 <!DOCTYPE html>
2 2
 <html>
3 3
 
4
-<head>
5
-    <meta charset="UTF-8" />
6
-    <script src="../Script/Common/huayi.load.js"></script>
7
-    <script src="../Script/Common/huayi.config.js"></script>
8
-    <link href="../css/layer/need/layer.css" />
9
-    <link rel="stylesheet" href="../css/init.css" />
10
-    <title>来电人</title>
11
-</head>
4
+	<head>
5
+		<meta charset="UTF-8" />
6
+		<script src="../Script/Common/huayi.load.js"></script>
7
+		<script src="../Script/Common/huayi.config.js"></script>
8
+		<link href="../css/layer/need/layer.css" />
9
+		<link rel="stylesheet" href="../css/init.css" />
10
+		<title>来电人</title>
11
+	</head>
12 12
 
13
-<body>
14
-    <div class="Common">
15
-        <table>
16
-            <tr>
17
-                <th style="width: 120px;">来电人:</th>
18
-                <td>
19
-                	<span class="callerName" style="display: none;"></span>
20
-                	<div style="display: inline-block;" class="passwordSearch">
21
-                		<input type="number" id="password" value=""autocomplete="off"/>
22
-                		<button onclick="getPhone()">查询</button>
23
-                	</div>
24
-                </td>
25
-                
26
-            </tr>
27
-        </table>
28
-    </div>
29
-    <script src="../css/laydate/laydate.js"></script>
30
-    <script src="../js/adjustHeight.js"></script>
31
-    <script>
32
-        var callerName = decodeURI(helper.request.queryString("callerName"));
33
-        var wid=helper.request.queryString("wid")
34
-        if (callerName) {
35
-            $(".callerName").text(callerName)
36
-        }
37
-        function getPhone(){
38
-        	if (!$("#password").val()) {
39
-        		layer.msg('请输入密码')
40
-        		return
41
-        	}
42
-        	$.ajax({
43
-					type:"get",
44
-					url:huayi.config.callcenter_url + "WorkOrder/GetPhone", //获取数据的Servlet地址,
45
-					async:true,
46
-					dataType:"json",
47
-					data:{
48
-						workorderid:wid,
49
-						password:$("#password").val(),
50
-						token: $.cookie("token")
51
-					},
52
-					success:function(res){
53
-						if (res.state.toLowerCase() ==="success") { 
54
-							$(".passwordSearch").hide()
55
-							$(".callerName").show()
56
-						}
57
-					}
58
-				});
59
-        }
60
-    </script>
61
-</body>
13
+	<body>
14
+		<div class="Common">
15
+			<table>
16
+				<tr>
17
+					<th style="width: 120px;">来电人:</th>
18
+					<td>
19
+						<span class="callerName"></span>
20
+						
21
+					</td>
22
+
23
+				</tr>
24
+			</table>
25
+		</div>
26
+		<script src="../css/laydate/laydate.js"></script>
27
+		<script src="../js/adjustHeight.js"></script>
28
+		<script>
29
+			var callerName = decodeURI(helper.request.queryString("callerName"));
30
+			var wid = helper.request.queryString("wid")
31
+			if (callerName) {
32
+				$(".callerName").text(callerName)
33
+			}
34
+			
35
+		</script>
36
+	</body>
62 37
 
63 38
 </html>

+ 38 - 3
WebUI/CallCenterWeb.UI/CommonHtml/callerNumber.html

@@ -17,7 +17,10 @@
17 17
                 <th style="width: 85px;text-align: left;">来电号码:</th>
18 18
                 <td>
19 19
                 	<span class="phoneNumber" style="display: none;"></span>
20
-                	
20
+                	<div style="display: inline-block;" class="passwordSearch">
21
+                		<input type="number" id="password" value="" autocomplete="off" />
22
+                		<button onclick="getPhone()">查询</button>
23
+                	</div>
21 24
                 </td>
22 25
             </tr>
23 26
         </table>
@@ -26,11 +29,43 @@
26 29
     <script src="../js/adjustHeight.js"></script>
27 30
     <script>
28 31
         var phoneNumber = decodeURIComponent(helper.request.queryString("phoneNumber"));
29
-        
32
+        var wid = helper.request.queryString("wid")
33
+        var isSecret = helper.request.queryString("isSecret")
34
+        debugger
35
+        if(isSecret == '1'){
36
+        	$(".phoneNumber").show()
37
+        	$(".passwordSearch").hide()
38
+        }else if(isSecret == '2'){
39
+        	$(".phoneNumber").hide()
40
+        	$(".passwordSearch").show()
41
+        }
30 42
         if (phoneNumber) {
31 43
             $(".phoneNumber").text(phoneNumber)
44
+            
45
+        }
46
+        function getPhone() {
47
+        	if (!$("#password").val()) {
48
+        		layer.msg('请输入密码')
49
+        		return
50
+        	}
51
+        	$.ajax({
52
+        		type: "get",
53
+        		url: huayi.config.callcenter_url + "WorkOrder/GetPhone", //获取数据的Servlet地址,
54
+        		async: true,
55
+        		dataType: "json",
56
+        		data: {
57
+        			workorderid: wid,
58
+        			password: $("#password").val(),
59
+        			token: $.cookie("token")
60
+        		},
61
+        		success: function(res) {
62
+        			if (res.state.toLowerCase() === "success") {
63
+        				$(".passwordSearch").hide()
64
+        				$(".phoneNumber").show()
65
+        			}
66
+        		}
67
+        	});
32 68
         }
33
-        
34 69
     </script>
35 70
 </body>
36 71
 

+ 5 - 5
WebUI/CallCenterWeb.UI/CommonHtml/provincialPlatformApplicationDelay.html

@@ -47,13 +47,12 @@
47 47
     <script>
48 48
         var wid = helper.request.queryString("wid");
49 49
         var type = helper.request.queryString("type");
50
-        
51 50
         $(document).ready(function () {
51
+        	console.log(wid,type)
52 52
             $(".Submit").click(function () {
53 53
                 JA();
54 54
             });
55 55
         });
56
-        
57 56
         //交办
58 57
         function JA() {
59 58
             $.post(
@@ -68,9 +67,10 @@
68 67
                     result = JSON.parse(result);
69 68
                     if (result.state.toLowerCase() == "success") {
70 69
                         var index = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
71
-                        parent.layer.close(index); //再执行关闭
72
-                        parent.$("#orderlist").bootstrapTable("refresh");
73
-                        parent.layer.msg("操作成功");
70
+			            parent.layer.close(index); //再执行关闭
71
+			            parent.$("#orderlist").bootstrapTable("refresh");
72
+			            parent.layer.msg("申请延时成功");
73
+			            parent.closePage();
74 74
                     }
75 75
                 }
76 76
             );

+ 7 - 0
WebUI/CallCenterWeb.UI/calloutNew/weChatVideo/js/mobileSip.js

@@ -46,6 +46,13 @@ $(function() {
46 46
 	})
47 47
 //	mediumInfo() //获取摄像头信息
48 48
 })
49
+function trunPage(){
50
+	if($(".superviseBtn").text() == "我是市民") {
51
+		window.location.href = "index.html"
52
+	} else if($(".superviseBtn").text() == "我是督办专员") {
53
+		window.location.href = "acceptingMan.html"
54
+	}
55
+}
49 56
 function getIos(){
50 57
 	var u = navigator.userAgent;
51 58
 	var isiOS

+ 0 - 1
WebUI/CallCenterWeb.UI/js/WorkOrder/WorkOrderList.js

@@ -115,7 +115,6 @@ function provincialPlatformReturn(str) {
115 115
 
116 116
 // 省平台申请延时
117 117
 function provincialPlatformApplicationDelay(str,type) {
118
-	
119 118
     layer.open({
120 119
         type: 2,
121 120
         content: