Parcourir la Source

主办单位搜索

liuyifan il y a 6 ans
Parent
commit
37a0d51282

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

@@ -51,5 +51,14 @@
51 51
 				<arguments>1.0-name-matches-false-false-node_modules</arguments>
52 52
 			</matcher>
53 53
 		</filter>
54
+		<filter>
55
+			<id>1578447566792</id>
56
+			<name></name>
57
+			<type>26</type>
58
+			<matcher>
59
+				<id>org.eclipse.ui.ide.multiFilter</id>
60
+				<arguments>1.0-name-matches-false-false-node_modules</arguments>
61
+			</matcher>
62
+		</filter>
54 63
 	</filteredResources>
55 64
 </projectDescription>

+ 36 - 2
WebUI/CallCenterWeb.UI/Appeal/Lawsuit.html

@@ -156,6 +156,36 @@
156 156
 				position: relative;
157 157
 				vertical-align: middle;
158 158
 			}
159
+			.selDpart1{
160
+				position: absolute;
161
+	            z-index: 11111;
162
+	            width: 220px;
163
+	            line-height: 30px;
164
+	            background: #FFFFFF;
165
+	            display: none;
166
+			}
167
+			#sponsor{
168
+				width: 218px;
169
+				border: 1px solid #00a1cb;
170
+				margin: 0;
171
+				padding: 0;
172
+				list-style: none;
173
+				max-height: 212px;
174
+				overflow-x: hidden;
175
+				overflow-y: scroll;
176
+			}
177
+			#sponsor li{
178
+				margin: 0;
179
+				padding-left: 10px;
180
+				width: 220px;
181
+				height: 30px;
182
+				line-height: 30px;
183
+				list-style: none;
184
+			}
185
+			#sponsor li:hover{
186
+				background: #00a1cb;
187
+			}
188
+
159 189
 			
160 190
 			.addTree {
161 191
 				background: #fff;
@@ -287,15 +317,18 @@
287 317
 					</div>
288 318
 					<div class="time-box form-group" >
289 319
 						<div class="inpBox">
290
-							<input type="text" class="inps" placeholder="请选择主办单位" />
320
+							<input type="text" class="inps" placeholder="请选择主办单位" onkeyup="darptSearch()" />
291 321
 							<i class="Cleans  fa fa-close"></i>
292 322
 							<i class="xl xl_one"></i>
293 323
 							<div class="addTree xlAdd">
294 324
 								<ul id="addTreeDemo" class="ztree">
295
-
296 325
 								</ul>
297 326
 							</div>
298 327
 						</div>
328
+						<div class="selDpart1">
329
+                        	<ul id="sponsor">
330
+							</ul>
331
+                        </div>
299 332
 					</div>
300 333
 					
301 334
 					<div class="time-box form-group" >
@@ -363,6 +396,7 @@
363 396
 		<script src="../js/laydate/laydate.js"></script>
364 397
 		<script src="../My97DatePicker/WdatePicker.js"></script>
365 398
 		<script src="../js/zTree/jquery.ztree.core.js"></script>
399
+    	<script src="../js/search/screen.js"></script>
366 400
 		<script>
367 401
 			$(document).ready(function() {
368 402
 				var wid = helper.request.queryString("wid");

+ 36 - 2
WebUI/CallCenterWeb.UI/Appeal/expiredWorkOrders.html

@@ -221,6 +221,36 @@
221 221
 				top: 9px;
222 222
 				display: none;
223 223
 			}
224
+			.selDpart1{
225
+				position: absolute;
226
+	            z-index: 11111;
227
+	            width: 220px;
228
+	            line-height: 30px;
229
+	            background: #FFFFFF;
230
+	            display: none;
231
+			}
232
+			#sponsor{
233
+				width: 218px;
234
+				border: 1px solid #00a1cb;
235
+				margin: 0;
236
+				padding: 0;
237
+				list-style: none;
238
+				max-height: 212px;
239
+				overflow-x: hidden;
240
+				overflow-y: scroll;
241
+			}
242
+			#sponsor li{
243
+				margin: 0;
244
+				padding-left: 10px;
245
+				width: 220px;
246
+				height: 30px;
247
+				line-height: 30px;
248
+				list-style: none;
249
+			}
250
+			#sponsor li:hover{
251
+				background: #00a1cb;
252
+			}
253
+
224 254
 		</style>
225 255
 	</head>
226 256
 
@@ -270,15 +300,18 @@
270 300
 					</div>
271 301
 					<div class="time-box form-group" >
272 302
 						<div class="inpBox">
273
-							<input type="text" class="inps" placeholder="请选择主办单位" />
303
+							<input type="text" class="inps" placeholder="请选择主办单位" onkeyup="darptSearch()"/>
274 304
 							<i class="Cleans  fa fa-close"></i>
275 305
 							<i class="xl xl_one"></i>
276 306
 							<div class="addTree xlAdd">
277 307
 								<ul id="addTreeDemo" class="ztree">
278
-
279 308
 								</ul>
280 309
 							</div>
281 310
 						</div>
311
+						<div class="selDpart1">
312
+                        	<ul id="sponsor">
313
+							</ul>
314
+                        </div>
282 315
 					</div>
283 316
 				
284 317
 					<div class="time-box form-group" >
@@ -342,6 +375,7 @@
342 375
 		<script src="../js/laydate/laydate.js"></script>
343 376
 		<script src="../My97DatePicker/WdatePicker.js"></script>
344 377
 		<script src="../js/zTree/jquery.ztree.core.js"></script>
378
+    	<script src="../js/search/screen.js"></script>
345 379
 		<script>
346 380
 			
347 381
 			$(document).ready(function() {

+ 35 - 1
WebUI/CallCenterWeb.UI/Business/LeaderDB.html

@@ -222,6 +222,35 @@
222 222
 				top: 5px;
223 223
 				display: none;
224 224
 			}
225
+			.selDpart1{
226
+				position: absolute;
227
+	            z-index: 11111;
228
+	            width: 220px;
229
+	            line-height: 30px;
230
+	            background: #FFFFFF;
231
+	            display: none;
232
+			}
233
+			#sponsor{
234
+				width: 218px;
235
+				border: 1px solid #00a1cb;
236
+				margin: 0;
237
+				padding: 0;
238
+				list-style: none;
239
+				max-height: 212px;
240
+				overflow-x: hidden;
241
+				overflow-y: scroll;
242
+			}
243
+			#sponsor li{
244
+				margin: 0;
245
+				padding-left: 10px;
246
+				width: 220px;
247
+				height: 30px;
248
+				line-height: 30px;
249
+				list-style: none;
250
+			}
251
+			#sponsor li:hover{
252
+				background: #00a1cb;
253
+			}
225 254
 		</style>
226 255
 	</head>
227 256
 
@@ -305,7 +334,7 @@
305 334
 									<th>主办单位:</th>
306 335
 									<td>
307 336
 										<div class="inpBox">
308
-											<input type="text" class="inps" />
337
+											<input type="text" class="inps" onkeyup="darptSearch()" />
309 338
 											<i class="Cleans  fa fa-close"></i>
310 339
 											<i class="xl xl_one"></i>
311 340
 											<div class="addTree xlAdd">
@@ -314,6 +343,10 @@
314 343
 												</ul>
315 344
 											</div>
316 345
 										</div>
346
+										<div class="selDpart1">
347
+				                        	<ul id="sponsor">
348
+											</ul>
349
+				                        </div>
317 350
 									</td>
318 351
 									<th>类型:</th>
319 352
 							<td>
@@ -375,6 +408,7 @@
375 408
 		<script src="../css/laydate/laydate.js"></script>
376 409
 		<script src="../My97DatePicker/WdatePicker.js"></script>
377 410
 		<script src="../js/zTree/jquery.ztree.core.js"></script>
411
+    	<script src="../js/search/screen.js"></script>
378 412
 		<script>
379 413
 			
380 414
 			$(document).ready(function() {

+ 36 - 1
WebUI/CallCenterWeb.UI/Business/LeaderDCL.html

@@ -222,6 +222,36 @@
222 222
 				top: 9px;
223 223
 				display: none;
224 224
 			}
225
+			.selDpart1{
226
+				position: absolute;
227
+	            z-index: 11111;
228
+	            width: 220px;
229
+	            line-height: 30px;
230
+	            background: #FFFFFF;
231
+	            display: none;
232
+			}
233
+			#sponsor{
234
+				width: 218px;
235
+				border: 1px solid #00a1cb;
236
+				margin: 0;
237
+				padding: 0;
238
+				list-style: none;
239
+				max-height: 212px;
240
+				overflow-x: hidden;
241
+				overflow-y: scroll;
242
+			}
243
+			#sponsor li{
244
+				margin: 0;
245
+				padding-left: 10px;
246
+				width: 220px;
247
+				height: 30px;
248
+				line-height: 30px;
249
+				list-style: none;
250
+			}
251
+			#sponsor li:hover{
252
+				background: #00a1cb;
253
+			}
254
+
225 255
 			
226 256
 			
227 257
 		</style>
@@ -289,7 +319,7 @@
289 319
 					</div>
290 320
 					<div class="time-box form-group" >
291 321
 						<div class="inpBox">
292
-							<input type="text" class="inps" placeholder="请选择主办单位" />
322
+							<input type="text" class="inps" placeholder="请选择主办单位" onkeyup="darptSearch()" />
293 323
 							<i class="Cleans  fa fa-close"></i>
294 324
 							<i class="xl xl_one"></i>
295 325
 							<div class="addTree xlAdd">
@@ -298,6 +328,10 @@
298 328
 								</ul>
299 329
 							</div>
300 330
 						</div>
331
+						<div class="selDpart1">
332
+                        	<ul id="sponsor">
333
+							</ul>
334
+                        </div>
301 335
 					</div>
302 336
 					<div class="time-box form-group" >
303 337
 						<select class="form-control" id="ZX">
@@ -361,6 +395,7 @@
361 395
 		<script src="../js/laydate/laydate.js"></script>
362 396
 		<script src="../My97DatePicker/WdatePicker.js"></script>
363 397
 		<script src="../js/zTree/jquery.ztree.core.js"></script>
398
+    	<script src="../js/search/screen.js"></script>
364 399
 		<script>
365 400
 				var wid = helper.request.queryString("states");
366 401
 				if(wid){

+ 35 - 1
WebUI/CallCenterWeb.UI/Business/LeaderYJA.html

@@ -222,6 +222,35 @@
222 222
 				top: 9px;
223 223
 				display: none;
224 224
 			}
225
+			.selDpart1{
226
+				position: absolute;
227
+	            z-index: 11111;
228
+	            width: 220px;
229
+	            line-height: 30px;
230
+	            background: #FFFFFF;
231
+	            display: none;
232
+			}
233
+			#sponsor{
234
+				width: 218px;
235
+				border: 1px solid #00a1cb;
236
+				margin: 0;
237
+				padding: 0;
238
+				list-style: none;
239
+				max-height: 212px;
240
+				overflow-x: hidden;
241
+				overflow-y: scroll;
242
+			}
243
+			#sponsor li{
244
+				margin: 0;
245
+				padding-left: 10px;
246
+				width: 220px;
247
+				height: 30px;
248
+				line-height: 30px;
249
+				list-style: none;
250
+			}
251
+			#sponsor li:hover{
252
+				background: #00a1cb;
253
+			}
225 254
 		</style>
226 255
 	</head>
227 256
 
@@ -291,7 +320,7 @@
291 320
 					</div>
292 321
 					<div class="time-box form-group" >
293 322
 						<div class="inpBox">
294
-							<input type="text" class="inps" placeholder="请选择主办单位" />
323
+							<input type="text" class="inps" placeholder="请选择主办单位" onkeyup="darptSearch()" />
295 324
 							<i class="Cleans  fa fa-close"></i>
296 325
 							<i class="xl xl_one"></i>
297 326
 							<div class="addTree xlAdd">
@@ -300,6 +329,10 @@
300 329
 								</ul>
301 330
 							</div>
302 331
 						</div>
332
+						<div class="selDpart1">
333
+                        	<ul id="sponsor">
334
+							</ul>
335
+                        </div>
303 336
 					</div>
304 337
 					<div class="time-box form-group" >
305 338
 						<select class="form-control" id="ZX">
@@ -361,6 +394,7 @@
361 394
 		<script src="../js/laydate/laydate.js"></script>
362 395
 		<script src="../My97DatePicker/WdatePicker.js"></script>
363 396
 		<script src="../js/zTree/jquery.ztree.core.js"></script>
397
+    	<script src="../js/search/screen.js"></script>
364 398
 		<script>
365 399
 									var wid = helper.request.queryString("states");
366 400
 if(wid){

+ 35 - 1
WebUI/CallCenterWeb.UI/Business/LeaderYJB.html

@@ -222,6 +222,35 @@
222 222
 				top: 5px;
223 223
 				display: none;
224 224
 			}
225
+			.selDpart1{
226
+				position: absolute;
227
+	            z-index: 11111;
228
+	            width: 220px;
229
+	            line-height: 30px;
230
+	            background: #FFFFFF;
231
+	            display: none;
232
+			}
233
+			#sponsor{
234
+				width: 218px;
235
+				border: 1px solid #00a1cb;
236
+				margin: 0;
237
+				padding: 0;
238
+				list-style: none;
239
+				max-height: 212px;
240
+				overflow-x: hidden;
241
+				overflow-y: scroll;
242
+			}
243
+			#sponsor li{
244
+				margin: 0;
245
+				padding-left: 10px;
246
+				width: 220px;
247
+				height: 30px;
248
+				line-height: 30px;
249
+				list-style: none;
250
+			}
251
+			#sponsor li:hover{
252
+				background: #00a1cb;
253
+			}
225 254
 		</style>
226 255
 	</head>
227 256
 
@@ -305,7 +334,7 @@
305 334
 									<th>主办单位:</th>
306 335
 									<td>
307 336
 										<div class="inpBox">
308
-											<input type="text" class="inps" />
337
+											<input type="text" class="inps" onkeyup="darptSearch()" />
309 338
 											<i class="Cleans  fa fa-close"></i>
310 339
 											<i class="xl xl_one"></i>
311 340
 											<div class="addTree xlAdd">
@@ -314,6 +343,10 @@
314 343
 												</ul>
315 344
 											</div>
316 345
 										</div>
346
+										<div class="selDpart1">
347
+				                        	<ul id="sponsor">
348
+											</ul>
349
+                        				</div>
317 350
 									</td>
318 351
 									<th>类型:</th>
319 352
 							<td>
@@ -372,6 +405,7 @@
372 405
 		<script src="../css/laydate/laydate.js"></script>
373 406
 		<script src="../My97DatePicker/WdatePicker.js"></script>
374 407
 		<script src="../js/zTree/jquery.ztree.core.js"></script>
408
+    	<script src="../js/search/screen.js"></script>
375 409
 		<script>
376 410
 			
377 411
 			$(document).ready(function() {

+ 36 - 1
WebUI/CallCenterWeb.UI/Business/LeaderYJC.html

@@ -222,6 +222,36 @@
222 222
 				top: 5px;
223 223
 				display: none;
224 224
 			}
225
+			.selDpart1{
226
+				position: absolute;
227
+	            z-index: 11111;
228
+	            width: 220px;
229
+	            line-height: 30px;
230
+	            background: #FFFFFF;
231
+	            display: none;
232
+			}
233
+			#sponsor{
234
+				width: 218px;
235
+				border: 1px solid #00a1cb;
236
+				margin: 0;
237
+				padding: 0;
238
+				list-style: none;
239
+				max-height: 212px;
240
+				overflow-x: hidden;
241
+				overflow-y: scroll;
242
+			}
243
+			#sponsor li{
244
+				margin: 0;
245
+				padding-left: 10px;
246
+				width: 220px;
247
+				height: 30px;
248
+				line-height: 30px;
249
+				list-style: none;
250
+			}
251
+			#sponsor li:hover{
252
+				background: #00a1cb;
253
+			}
254
+
225 255
 		</style>
226 256
 	</head>
227 257
 
@@ -305,7 +335,7 @@
305 335
 									<th>主办单位:</th>
306 336
 									<td>
307 337
 										<div class="inpBox">
308
-											<input type="text" class="inps" />
338
+											<input type="text" class="inps" onkeyup="darptSearch()" />
309 339
 											<i class="Cleans  fa fa-close"></i>
310 340
 											<i class="xl xl_one"></i>
311 341
 											<div class="addTree xlAdd">
@@ -314,6 +344,10 @@
314 344
 												</ul>
315 345
 											</div>
316 346
 										</div>
347
+										<div class="selDpart1">
348
+				                        	<ul id="sponsor">
349
+											</ul>
350
+				                        </div>
317 351
 									</td>
318 352
 									<th>类型:</th>
319 353
 							<td>
@@ -372,6 +406,7 @@
372 406
 		<script src="../css/laydate/laydate.js"></script>
373 407
 		<script src="../My97DatePicker/WdatePicker.js"></script>
374 408
 		<script src="../js/zTree/jquery.ztree.core.js"></script>
409
+    	<script src="../js/search/screen.js"></script>
375 410
 		<script>
376 411
 			
377 412
 			$(document).ready(function() {

+ 36 - 1
WebUI/CallCenterWeb.UI/Business/LeaderYTH.html

@@ -222,6 +222,36 @@
222 222
 				top: 9px;
223 223
 				display: none;
224 224
 			}
225
+			.selDpart1{
226
+				position: absolute;
227
+	            z-index: 11111;
228
+	            width: 220px;
229
+	            line-height: 30px;
230
+	            background: #FFFFFF;
231
+	            display: none;
232
+			}
233
+			#sponsor{
234
+				width: 218px;
235
+				border: 1px solid #00a1cb;
236
+				margin: 0;
237
+				padding: 0;
238
+				list-style: none;
239
+				max-height: 212px;
240
+				overflow-x: hidden;
241
+				overflow-y: scroll;
242
+			}
243
+			#sponsor li{
244
+				margin: 0;
245
+				padding-left: 10px;
246
+				width: 220px;
247
+				height: 30px;
248
+				line-height: 30px;
249
+				list-style: none;
250
+			}
251
+			#sponsor li:hover{
252
+				background: #00a1cb;
253
+			}
254
+
225 255
 		</style>
226 256
 	</head>
227 257
 
@@ -293,7 +323,7 @@
293 323
 					</div>
294 324
 					<div class="time-box form-group" >
295 325
 						<div class="inpBox">
296
-							<input type="text" class="inps" placeholder="请选择主办单位" />
326
+							<input type="text" class="inps" placeholder="请选择主办单位" onkeyup="darptSearch()" />
297 327
 							<i class="Cleans  fa fa-close"></i>
298 328
 							<i class="xl xl_one"></i>
299 329
 							<div class="addTree xlAdd">
@@ -302,6 +332,10 @@
302 332
 								</ul>
303 333
 							</div>
304 334
 						</div>
335
+						<div class="selDpart1">
336
+                        	<ul id="sponsor">
337
+							</ul>
338
+                        </div>
305 339
 					</div>
306 340
 					<div class="time-box form-group" >
307 341
 						<select class="form-control" id="ZX">
@@ -367,6 +401,7 @@
367 401
 		<script src="../js/laydate/laydate.js"></script>
368 402
 		<script src="../My97DatePicker/WdatePicker.js"></script>
369 403
 		<script src="../js/zTree/jquery.ztree.core.js"></script>
404
+    	<script src="../js/search/screen.js"></script>
370 405
 		<script>
371 406
 			
372 407
 			$(document).ready(function() {

+ 35 - 1
WebUI/CallCenterWeb.UI/Business/LeaderYYS.html

@@ -222,6 +222,35 @@
222 222
 				top: 9px;
223 223
 				display: none;
224 224
 			}
225
+			.selDpart1{
226
+				position: absolute;
227
+	            z-index: 11111;
228
+	            width: 220px;
229
+	            line-height: 30px;
230
+	            background: #FFFFFF;
231
+	            display: none;
232
+			}
233
+			#sponsor{
234
+				width: 218px;
235
+				border: 1px solid #00a1cb;
236
+				margin: 0;
237
+				padding: 0;
238
+				list-style: none;
239
+				max-height: 212px;
240
+				overflow-x: hidden;
241
+				overflow-y: scroll;
242
+			}
243
+			#sponsor li{
244
+				margin: 0;
245
+				padding-left: 10px;
246
+				width: 220px;
247
+				height: 30px;
248
+				line-height: 30px;
249
+				list-style: none;
250
+			}
251
+			#sponsor li:hover{
252
+				background: #00a1cb;
253
+			}
225 254
 		</style>
226 255
 	</head>
227 256
 
@@ -291,7 +320,7 @@
291 320
 					</div>
292 321
 					<div class="time-box form-group" >
293 322
 						<div class="inpBox">
294
-							<input type="text" class="inps" placeholder="请选择主办单位" />
323
+							<input type="text" class="inps" placeholder="请选择主办单位" onkeyup="darptSearch()" />
295 324
 							<i class="Cleans  fa fa-close"></i>
296 325
 							<i class="xl xl_one"></i>
297 326
 							<div class="addTree xlAdd">
@@ -300,6 +329,10 @@
300 329
 								</ul>
301 330
 							</div>
302 331
 						</div>
332
+						<div class="selDpart1">
333
+                        	<ul id="sponsor">
334
+							</ul>
335
+                        </div>
303 336
 					</div>
304 337
 					<div class="time-box form-group" >
305 338
 						<select class="form-control" id="ZX">
@@ -364,6 +397,7 @@
364 397
 		<script src="../js/laydate/laydate.js"></script>
365 398
 		<script src="../My97DatePicker/WdatePicker.js"></script>
366 399
 		<script src="../js/zTree/jquery.ztree.core.js"></script>
400
+    	<script src="../js/search/screen.js"></script>
367 401
 		<script>
368 402
 			
369 403
 			$(document).ready(function() {

+ 35 - 1
WebUI/CallCenterWeb.UI/Business/LeaderYZB.html

@@ -222,6 +222,35 @@
222 222
 				top: 9px;
223 223
 				display: none;
224 224
 			}
225
+			.selDpart1{
226
+				position: absolute;
227
+	            z-index: 11111;
228
+	            width: 220px;
229
+	            line-height: 30px;
230
+	            background: #FFFFFF;
231
+	            display: none;
232
+			}
233
+			#sponsor{
234
+				width: 218px;
235
+				border: 1px solid #00a1cb;
236
+				margin: 0;
237
+				padding: 0;
238
+				list-style: none;
239
+				max-height: 212px;
240
+				overflow-x: hidden;
241
+				overflow-y: scroll;
242
+			}
243
+			#sponsor li{
244
+				margin: 0;
245
+				padding-left: 10px;
246
+				width: 220px;
247
+				height: 30px;
248
+				line-height: 30px;
249
+				list-style: none;
250
+			}
251
+			#sponsor li:hover{
252
+				background: #00a1cb;
253
+			}
225 254
 		</style>
226 255
 	</head>
227 256
 
@@ -292,7 +321,7 @@
292 321
 					</div>
293 322
 					<div class="time-box form-group" >
294 323
 						<div class="inpBox">
295
-							<input type="text" class="inps" placeholder="请选择主办单位" />
324
+							<input type="text" class="inps" placeholder="请选择主办单位" onkeyup="darptSearch()" />
296 325
 							<i class="Cleans  fa fa-close"></i>
297 326
 							<i class="xl xl_one"></i>
298 327
 							<div class="addTree xlAdd">
@@ -301,6 +330,10 @@
301 330
 								</ul>
302 331
 							</div>
303 332
 						</div>
333
+						<div class="selDpart1">
334
+                        	<ul id="sponsor">
335
+							</ul>
336
+                        </div>
304 337
 					</div>
305 338
 					<div class="time-box form-group" >
306 339
 						<select class="form-control" id="ZX">
@@ -362,6 +395,7 @@
362 395
 		<script src="../js/laydate/laydate.js"></script>
363 396
 		<script src="../My97DatePicker/WdatePicker.js"></script>
364 397
 		<script src="../js/zTree/jquery.ztree.core.js"></script>
398
+    	<script src="../js/search/screen.js"></script>
365 399
 		<script>
366 400
 			
367 401
 			$(document).ready(function() {

+ 36 - 1
WebUI/CallCenterWeb.UI/Business/WorkDC.html

@@ -226,6 +226,36 @@
226 226
             top: 5px;
227 227
             display: none;
228 228
         }
229
+		.selDpart1{
230
+			position: absolute;
231
+            z-index: 11111;
232
+            width: 220px;
233
+            line-height: 30px;
234
+            background: #FFFFFF;
235
+            display: none;
236
+		}
237
+		#sponsor{
238
+			width: 218px;
239
+			border: 1px solid #00a1cb;
240
+			margin: 0;
241
+			padding: 0;
242
+			list-style: none;
243
+			max-height: 212px;
244
+			overflow-x: hidden;
245
+			overflow-y: scroll;
246
+		}
247
+		#sponsor li{
248
+			margin: 0;
249
+			padding-left: 10px;
250
+			width: 220px;
251
+			height: 30px;
252
+			line-height: 30px;
253
+			list-style: none;
254
+		}
255
+		#sponsor li:hover{
256
+			background: #00a1cb;
257
+		}
258
+
229 259
     </style>
230 260
 </head>
231 261
 
@@ -304,13 +334,17 @@
304 334
                                 <th>主办单位:</th>
305 335
                                 <td>
306 336
                                     <div class="inpBox">
307
-                                        <input type="text" class="inps" />
337
+                                        <input type="text" class="inps" onkeyup="darptSearch()" />
308 338
                                         <i class="Cleans  fa fa-close"></i>
309 339
                                         <i class="xl xl_one"></i>
310 340
                                         <div class="addTree xlAdd">
311 341
                                             <ul id="addTreeDemo" class="ztree"></ul>
312 342
                                         </div>
313 343
                                     </div>
344
+            						<div class="selDpart1">
345
+			                        	<ul id="sponsor">
346
+										</ul>
347
+			                        </div>
314 348
                                 </td>
315 349
                                 <th>类型:</th>
316 350
                                 <td>
@@ -368,6 +402,7 @@
368 402
     <script src="../css/laydate/laydate.js"></script>
369 403
     <script src="../My97DatePicker/WdatePicker.js"></script>
370 404
     <script src="../js/zTree/jquery.ztree.core.js"></script>
405
+	<script src="../js/search/screen.js"></script>
371 406
     <script>
372 407
         var wid = helper.request.queryString("states");
373 408
         if (wid) {

+ 36 - 1
WebUI/CallCenterWeb.UI/Business/WorkDC_EJ.html

@@ -227,6 +227,36 @@
227 227
             top: 5px;
228 228
             display: none;
229 229
         }
230
+		.selDpart1{
231
+			position: absolute;
232
+            z-index: 11111;
233
+            width: 220px;
234
+            line-height: 30px;
235
+            background: #FFFFFF;
236
+            display: none;
237
+		}
238
+		#sponsor{
239
+			width: 218px;
240
+			border: 1px solid #00a1cb;
241
+			margin: 0;
242
+			padding: 0;
243
+			list-style: none;
244
+			max-height: 212px;
245
+			overflow-x: hidden;
246
+			overflow-y: scroll;
247
+		}
248
+		#sponsor li{
249
+			margin: 0;
250
+			padding-left: 10px;
251
+			width: 220px;
252
+			height: 30px;
253
+			line-height: 30px;
254
+			list-style: none;
255
+		}
256
+		#sponsor li:hover{
257
+			background: #00a1cb;
258
+		}
259
+
230 260
     </style>
231 261
 </head>
232 262
 
@@ -305,13 +335,17 @@
305 335
                                 <th>主办单位:</th>
306 336
                                 <td>
307 337
                                     <div class="inpBox">
308
-                                        <input type="text" class="inps" />
338
+                                        <input type="text" class="inps" onkeyup="darptSearch()"/>
309 339
                                         <i class="Cleans  fa fa-close"></i>
310 340
                                         <i class="xl xl_one"></i>
311 341
                                         <div class="addTree xlAdd">
312 342
                                             <ul id="addTreeDemo" class="ztree"></ul>
313 343
                                         </div>
314 344
                                     </div>
345
+            						<div class="selDpart1">
346
+			                        	<ul id="sponsor">
347
+										</ul>
348
+                        			</div>
315 349
                                 </td>
316 350
                                 <th>类型:</th>
317 351
                                 <td>
@@ -369,6 +403,7 @@
369 403
     <script src="../css/laydate/laydate.js"></script>
370 404
     <script src="../My97DatePicker/WdatePicker.js"></script>
371 405
     <script src="../js/zTree/jquery.ztree.core.js"></script>
406
+	<script src="../js/search/screen.js"></script>
372 407
     <script>
373 408
         var wid = helper.request.queryString("states");
374 409
         if (wid) {

+ 37 - 2
WebUI/CallCenterWeb.UI/Business/WorkYBL.html

@@ -222,6 +222,36 @@
222 222
 				top: 5px;
223 223
 				display: none;
224 224
 			}
225
+			.selDpart1{
226
+				position: absolute;
227
+	            z-index: 11111;
228
+	            width: 220px;
229
+	            line-height: 30px;
230
+	            background: #FFFFFF;
231
+	            display: none;
232
+			}
233
+			#sponsor{
234
+				width: 218px;
235
+				border: 1px solid #00a1cb;
236
+				margin: 0;
237
+				padding: 0;
238
+				list-style: none;
239
+				max-height: 212px;
240
+				overflow-x: hidden;
241
+				overflow-y: scroll;
242
+			}
243
+			#sponsor li{
244
+				margin: 0;
245
+				padding-left: 10px;
246
+				width: 220px;
247
+				height: 30px;
248
+				line-height: 30px;
249
+				list-style: none;
250
+			}
251
+			#sponsor li:hover{
252
+				background: #00a1cb;
253
+			}
254
+
225 255
 		</style>
226 256
 	</head>
227 257
 
@@ -305,7 +335,7 @@
305 335
 									<th>主办单位:</th>
306 336
 									<td>
307 337
 										<div class="inpBox">
308
-											<input type="text" class="inps" />
338
+											<input type="text" class="inps" onkeyup="darptSearch()" />
309 339
 											<i class="Cleans  fa fa-close"></i>
310 340
 											<i class="xl xl_one"></i>
311 341
 											<div class="addTree xlAdd">
@@ -314,6 +344,10 @@
314 344
 												</ul>
315 345
 											</div>
316 346
 										</div>
347
+										<div class="selDpart1">
348
+				                        	<ul id="sponsor">
349
+											</ul>
350
+			                    	    </div>
317 351
 									</td>
318 352
 									<th>类型:</th>
319 353
 							<td>
@@ -371,7 +405,8 @@
371 405
 		</div>
372 406
 		<script src="../css/laydate/laydate.js"></script>
373 407
 		<script src="../My97DatePicker/WdatePicker.js"></script>
374
-			<script src="../js/zTree/jquery.ztree.core.js"></script>
408
+		<script src="../js/zTree/jquery.ztree.core.js"></script>
409
+    	<script src="../js/search/screen.js"></script>
375 410
 		<script>
376 411
 			
377 412
 			

+ 36 - 1
WebUI/CallCenterWeb.UI/Business/WorkYBL_zlei.html

@@ -227,6 +227,36 @@
227 227
             top: 5px;
228 228
             display: none;
229 229
         }
230
+		.selDpart1{
231
+			position: absolute;
232
+            z-index: 11111;
233
+            width: 220px;
234
+            line-height: 30px;
235
+            background: #FFFFFF;
236
+            display: none;
237
+		}
238
+		#sponsor{
239
+			width: 218px;
240
+			border: 1px solid #00a1cb;
241
+			margin: 0;
242
+			padding: 0;
243
+			list-style: none;
244
+			max-height: 212px;
245
+			overflow-x: hidden;
246
+			overflow-y: scroll;
247
+		}
248
+		#sponsor li{
249
+			margin: 0;
250
+			padding-left: 10px;
251
+			width: 220px;
252
+			height: 30px;
253
+			line-height: 30px;
254
+			list-style: none;
255
+		}
256
+		#sponsor li:hover{
257
+			background: #00a1cb;
258
+		}
259
+
230 260
     </style>
231 261
 </head>
232 262
 
@@ -305,13 +335,17 @@
305 335
                                 <th>主办单位:</th>
306 336
                                 <td>
307 337
                                     <div class="inpBox">
308
-                                        <input type="text" class="inps" />
338
+                                        <input type="text" class="inps" onkeyup="darptSearch()" />
309 339
                                         <i class="Cleans  fa fa-close"></i>
310 340
                                         <i class="xl xl_one"></i>
311 341
                                         <div class="addTree xlAdd">
312 342
                                             <ul id="addTreeDemo" class="ztree"></ul>
313 343
                                         </div>
314 344
                                     </div>
345
+            						<div class="selDpart1">
346
+			                        	<ul id="sponsor">
347
+										</ul>
348
+            			            </div>
315 349
                                 </td>
316 350
                                 <th>类型:</th>
317 351
                                 <td>
@@ -369,6 +403,7 @@
369 403
     <script src="../css/laydate/laydate.js"></script>
370 404
     <script src="../My97DatePicker/WdatePicker.js"></script>
371 405
     <script src="../js/zTree/jquery.ztree.core.js"></script>
406
+	<script src="../js/search/screen.js"></script>
372 407
     <script>
373 408
         var wid = helper.request.queryString("states");
374 409
         if (wid) {

+ 37 - 2
WebUI/CallCenterWeb.UI/Business/WorkYCS.html

@@ -222,6 +222,36 @@
222 222
 				top: 5px;
223 223
 				display: none;
224 224
 			}
225
+			.selDpart1{
226
+				position: absolute;
227
+	            z-index: 11111;
228
+	            width: 220px;
229
+	            line-height: 30px;
230
+	            background: #FFFFFF;
231
+	            display: none;
232
+			}
233
+			#sponsor{
234
+				width: 218px;
235
+				border: 1px solid #00a1cb;
236
+				margin: 0;
237
+				padding: 0;
238
+				list-style: none;
239
+				max-height: 212px;
240
+				overflow-x: hidden;
241
+				overflow-y: scroll;
242
+			}
243
+			#sponsor li{
244
+				margin: 0;
245
+				padding-left: 10px;
246
+				width: 220px;
247
+				height: 30px;
248
+				line-height: 30px;
249
+				list-style: none;
250
+			}
251
+			#sponsor li:hover{
252
+				background: #00a1cb;
253
+			}
254
+
225 255
 		</style>
226 256
 	</head>
227 257
 
@@ -305,7 +335,7 @@
305 335
 									<th>主办单位:</th>
306 336
 									<td>
307 337
 										<div class="inpBox">
308
-											<input type="text" class="inps" />
338
+											<input type="text" class="inps" onkeyup="darptSearch()" />
309 339
 											<i class="Cleans  fa fa-close"></i>
310 340
 											<i class="xl xl_one"></i>
311 341
 											<div class="addTree xlAdd">
@@ -314,6 +344,10 @@
314 344
 												</ul>
315 345
 											</div>
316 346
 										</div>
347
+										<div class="selDpart1">
348
+				                        	<ul id="sponsor">
349
+											</ul>
350
+				                        </div>
317 351
 									</td>
318 352
 									<th>类型:</th>
319 353
 							<td>
@@ -371,7 +405,8 @@
371 405
 		</div>
372 406
 		<script src="../css/laydate/laydate.js"></script>
373 407
 		<script src="../My97DatePicker/WdatePicker.js"></script>
374
-			<script src="../js/zTree/jquery.ztree.core.js"></script>
408
+		<script src="../js/zTree/jquery.ztree.core.js"></script>
409
+    	<script src="../js/search/screen.js"></script>
375 410
 		<script>
376 411
 			
377 412
 			

+ 37 - 2
WebUI/CallCenterWeb.UI/Business/WorkYSQTH.html

@@ -222,6 +222,36 @@
222 222
 				top: 5px;
223 223
 				display: none;
224 224
 			}
225
+			.selDpart1{
226
+				position: absolute;
227
+	            z-index: 11111;
228
+	            width: 220px;
229
+	            line-height: 30px;
230
+	            background: #FFFFFF;
231
+	            display: none;
232
+			}
233
+			#sponsor{
234
+				width: 218px;
235
+				border: 1px solid #00a1cb;
236
+				margin: 0;
237
+				padding: 0;
238
+				list-style: none;
239
+				max-height: 212px;
240
+				overflow-x: hidden;
241
+				overflow-y: scroll;
242
+			}
243
+			#sponsor li{
244
+				margin: 0;
245
+				padding-left: 10px;
246
+				width: 220px;
247
+				height: 30px;
248
+				line-height: 30px;
249
+				list-style: none;
250
+			}
251
+			#sponsor li:hover{
252
+				background: #00a1cb;
253
+			}
254
+
225 255
 		</style>
226 256
 	</head>
227 257
 
@@ -305,7 +335,7 @@
305 335
 									<th>主办单位:</th>
306 336
 									<td>
307 337
 										<div class="inpBox">
308
-											<input type="text" class="inps" />
338
+											<input type="text" class="inps" onkeyup="darptSearch()" />
309 339
 											<i class="Cleans  fa fa-close"></i>
310 340
 											<i class="xl xl_one"></i>
311 341
 											<div class="addTree xlAdd">
@@ -314,6 +344,10 @@
314 344
 												</ul>
315 345
 											</div>
316 346
 										</div>
347
+										<div class="selDpart1">
348
+				                        	<ul id="sponsor">
349
+											</ul>
350
+				                        </div>
317 351
 									</td>
318 352
 									<th>类型:</th>
319 353
 							<td>
@@ -371,7 +405,8 @@
371 405
 		</div>
372 406
 		<script src="../css/laydate/laydate.js"></script>
373 407
 		<script src="../My97DatePicker/WdatePicker.js"></script>
374
-			<script src="../js/zTree/jquery.ztree.core.js"></script>
408
+		<script src="../js/zTree/jquery.ztree.core.js"></script>
409
+    	<script src="../js/search/screen.js"></script>
375 410
 		<script>
376 411
 			
377 412
 			

+ 36 - 2
WebUI/CallCenterWeb.UI/Business/WorkYSQYS.html

@@ -222,6 +222,35 @@
222 222
 				top: 5px;
223 223
 				display: none;
224 224
 			}
225
+			.selDpart1{
226
+				position: absolute;
227
+	            z-index: 11111;
228
+	            width: 220px;
229
+	            line-height: 30px;
230
+	            background: #FFFFFF;
231
+	            display: none;
232
+			}
233
+			#sponsor{
234
+				width: 218px;
235
+				border: 1px solid #00a1cb;
236
+				margin: 0;
237
+				padding: 0;
238
+				list-style: none;
239
+				max-height: 212px;
240
+				overflow-x: hidden;
241
+				overflow-y: scroll;
242
+			}
243
+			#sponsor li{
244
+				margin: 0;
245
+				padding-left: 10px;
246
+				width: 220px;
247
+				height: 30px;
248
+				line-height: 30px;
249
+				list-style: none;
250
+			}
251
+			#sponsor li:hover{
252
+				background: #00a1cb;
253
+			}
225 254
 		</style>
226 255
 	</head>
227 256
 
@@ -305,7 +334,7 @@
305 334
 									<th>主办单位:</th>
306 335
 									<td>
307 336
 										<div class="inpBox">
308
-											<input type="text" class="inps" />
337
+											<input type="text" class="inps" onkeyup="darptSearch()" />
309 338
 											<i class="Cleans  fa fa-close"></i>
310 339
 											<i class="xl xl_one"></i>
311 340
 											<div class="addTree xlAdd">
@@ -314,6 +343,10 @@
314 343
 												</ul>
315 344
 											</div>
316 345
 										</div>
346
+										<div class="selDpart1">
347
+				                        	<ul id="sponsor">
348
+											</ul>
349
+				                        </div>
317 350
 									</td>
318 351
 									<th>类型:</th>
319 352
 							<td>
@@ -371,7 +404,8 @@
371 404
 		</div>
372 405
 		<script src="../css/laydate/laydate.js"></script>
373 406
 		<script src="../My97DatePicker/WdatePicker.js"></script>
374
-			<script src="../js/zTree/jquery.ztree.core.js"></script>
407
+		<script src="../js/zTree/jquery.ztree.core.js"></script>
408
+    	<script src="../js/search/screen.js"></script>
375 409
 		<script>
376 410
 			
377 411
 			

+ 36 - 2
WebUI/CallCenterWeb.UI/Business/ZXDCL.html

@@ -222,6 +222,35 @@
222 222
 				top: 5px;
223 223
 				display: none;
224 224
 			}
225
+			.selDpart1{
226
+				position: absolute;
227
+	            z-index: 11111;
228
+	            width: 220px;
229
+	            line-height: 30px;
230
+	            background: #FFFFFF;
231
+	            display: none;
232
+			}
233
+			#sponsor{
234
+				width: 218px;
235
+				border: 1px solid #00a1cb;
236
+				margin: 0;
237
+				padding: 0;
238
+				list-style: none;
239
+				max-height: 212px;
240
+				overflow-x: hidden;
241
+				overflow-y: scroll;
242
+			}
243
+			#sponsor li{
244
+				margin: 0;
245
+				padding-left: 10px;
246
+				width: 220px;
247
+				height: 30px;
248
+				line-height: 30px;
249
+				list-style: none;
250
+			}
251
+			#sponsor li:hover{
252
+				background: #00a1cb;
253
+			}
225 254
 		</style>
226 255
 	</head>
227 256
 
@@ -298,7 +327,7 @@
298 327
 									<th>主办单位:</th>
299 328
 									<td>
300 329
 										<div class="inpBox">
301
-											<input type="text" class="inps" />
330
+											<input type="text" class="inps" onkeyup="darptSearch()" />
302 331
 											<i class="Cleans  fa fa-close"></i>
303 332
 											<i class="xl xl_one"></i>
304 333
 											<div class="addTree xlAdd">
@@ -307,6 +336,10 @@
307 336
 												</ul>
308 337
 											</div>
309 338
 										</div>
339
+										<div class="selDpart1">
340
+				                        	<ul id="sponsor">
341
+											</ul>
342
+				                        </div>
310 343
 									</td>
311 344
 									<th>类型:</th>
312 345
 							<td>
@@ -364,7 +397,8 @@
364 397
 		</div>
365 398
 		<script src="../css/laydate/laydate.js"></script>
366 399
 		<script src="../My97DatePicker/WdatePicker.js"></script>
367
-			<script src="../js/zTree/jquery.ztree.core.js"></script>
400
+    	<script src="../js/search/screen.js"></script>
401
+		<script src="../js/zTree/jquery.ztree.core.js"></script>
368 402
 		<script>
369 403
 			//							return '<div class="imgs" >' +
370 404
 			//								'<a class="xg"  title="查看" onclick="ckxq(' + val + ')"> <i class="fa fa-search"></i></a>' +

+ 36 - 1
WebUI/CallCenterWeb.UI/Business/ZXDCLs.html

@@ -221,6 +221,36 @@
221 221
 				top: 5px;
222 222
 				display: none;
223 223
 			}
224
+			.selDpart1{
225
+				position: absolute;
226
+	            z-index: 11111;
227
+	            width: 220px;
228
+	            line-height: 30px;
229
+	            background: #FFFFFF;
230
+	            display: none;
231
+			}
232
+			#sponsor{
233
+				width: 218px;
234
+				border: 1px solid #00a1cb;
235
+				margin: 0;
236
+				padding: 0;
237
+				list-style: none;
238
+				max-height: 212px;
239
+				overflow-x: hidden;
240
+				overflow-y: scroll;
241
+			}
242
+			#sponsor li{
243
+				margin: 0;
244
+				padding-left: 10px;
245
+				width: 220px;
246
+				height: 30px;
247
+				line-height: 30px;
248
+				list-style: none;
249
+			}
250
+			#sponsor li:hover{
251
+				background: #00a1cb;
252
+			}
253
+
224 254
 		</style>
225 255
 	</head>
226 256
 
@@ -304,7 +334,7 @@
304 334
 									<th>主办单位:</th>
305 335
 									<td>
306 336
 										<div class="inpBox">
307
-											<input type="text" class="inps" />
337
+											<input type="text" class="inps" onkeyup="darptSearch()" />
308 338
 											<i class="Cleans  fa fa-close"></i>
309 339
 											<i class="xl xl_one"></i>
310 340
 											<div class="addTree xlAdd">
@@ -313,6 +343,10 @@
313 343
 												</ul>
314 344
 											</div>
315 345
 										</div>
346
+										<div class="selDpart1">
347
+				                        	<ul id="sponsor">
348
+											</ul>
349
+                        				</div>
316 350
 									</td>
317 351
 									<th>类型:</th>
318 352
 							<td>
@@ -372,6 +406,7 @@
372 406
 		<script src="../css/laydate/laydate.js"></script>
373 407
 		<script src="../My97DatePicker/WdatePicker.js"></script>
374 408
 		<script src="../js/zTree/jquery.ztree.core.js"></script>
409
+    	<script src="../js/search/screen.js"></script>
375 410
 		<script>
376 411
 			$(document).ready(function() {
377 412
 				load();

+ 37 - 2
WebUI/CallCenterWeb.UI/Business/ZXYHF.html

@@ -222,6 +222,36 @@
222 222
 				top: 5px;
223 223
 				display: none;
224 224
 			}
225
+			.selDpart1{
226
+				position: absolute;
227
+	            z-index: 11111;
228
+	            width: 220px;
229
+	            line-height: 30px;
230
+	            background: #FFFFFF;
231
+	            display: none;
232
+			}
233
+			#sponsor{
234
+				width: 218px;
235
+				border: 1px solid #00a1cb;
236
+				margin: 0;
237
+				padding: 0;
238
+				list-style: none;
239
+				max-height: 212px;
240
+				overflow-x: hidden;
241
+				overflow-y: scroll;
242
+			}
243
+			#sponsor li{
244
+				margin: 0;
245
+				padding-left: 10px;
246
+				width: 220px;
247
+				height: 30px;
248
+				line-height: 30px;
249
+				list-style: none;
250
+			}
251
+			#sponsor li:hover{
252
+				background: #00a1cb;
253
+			}
254
+
225 255
 		</style>
226 256
 	</head>
227 257
 
@@ -305,7 +335,7 @@
305 335
 									<th>主办单位:</th>
306 336
 									<td>
307 337
 										<div class="inpBox">
308
-											<input type="text" class="inps" />
338
+											<input type="text" class="inps" onkeyup="darptSearch()" />
309 339
 											<i class="Cleans  fa fa-close"></i>
310 340
 											<i class="xl xl_one"></i>
311 341
 											<div class="addTree xlAdd">
@@ -314,6 +344,10 @@
314 344
 												</ul>
315 345
 											</div>
316 346
 										</div>
347
+										<div class="selDpart1">
348
+				                        	<ul id="sponsor">
349
+											</ul>
350
+				                        </div>
317 351
 									</td>
318 352
 									<th>类型:</th>
319 353
 							<td>
@@ -371,7 +405,8 @@
371 405
 		</div>
372 406
 		<script src="../css/laydate/laydate.js"></script>
373 407
 		<script src="../My97DatePicker/WdatePicker.js"></script>
374
-			<script src="../js/zTree/jquery.ztree.core.js"></script>
408
+		<script src="../js/zTree/jquery.ztree.core.js"></script>
409
+    	<script src="../js/search/screen.js"></script>
375 410
 		<script>
376 411
 			//							return '<div class="imgs" >' +
377 412
 			//								'<a class="xg"  title="查看" onclick="ckxq(' + val + ')"> <i class="fa fa-search"></i></a>' +

+ 36 - 2
WebUI/CallCenterWeb.UI/Business/ZXYTJ.html

@@ -222,6 +222,35 @@
222 222
 				top: 5px;
223 223
 				display: none;
224 224
 			}
225
+			.selDpart1{
226
+				position: absolute;
227
+	            z-index: 11111;
228
+	            width: 220px;
229
+	            line-height: 30px;
230
+	            background: #FFFFFF;
231
+	            display: none;
232
+			}
233
+			#sponsor{
234
+				width: 218px;
235
+				border: 1px solid #00a1cb;
236
+				margin: 0;
237
+				padding: 0;
238
+				list-style: none;
239
+				max-height: 212px;
240
+				overflow-x: hidden;
241
+				overflow-y: scroll;
242
+			}
243
+			#sponsor li{
244
+				margin: 0;
245
+				padding-left: 10px;
246
+				width: 220px;
247
+				height: 30px;
248
+				line-height: 30px;
249
+				list-style: none;
250
+			}
251
+			#sponsor li:hover{
252
+				background: #00a1cb;
253
+			}
225 254
 		</style>
226 255
 	</head>
227 256
 
@@ -305,7 +334,7 @@
305 334
 									<th>主办单位:</th>
306 335
 									<td>
307 336
 										<div class="inpBox">
308
-											<input type="text" class="inps" />
337
+											<input type="text" class="inps" onkeyup="darptSearch()" />
309 338
 											<i class="Cleans  fa fa-close"></i>
310 339
 											<i class="xl xl_one"></i>
311 340
 											<div class="addTree xlAdd">
@@ -314,6 +343,10 @@
314 343
 												</ul>
315 344
 											</div>
316 345
 										</div>
346
+										<div class="selDpart1">
347
+				                        	<ul id="sponsor">
348
+											</ul>
349
+				                        </div>
317 350
 									</td>
318 351
 									<th>类型:</th>
319 352
 							<td>
@@ -371,7 +404,8 @@
371 404
 		</div>
372 405
 		<script src="../css/laydate/laydate.js"></script>
373 406
 		<script src="../My97DatePicker/WdatePicker.js"></script>
374
-			<script src="../js/zTree/jquery.ztree.core.js"></script>
407
+		<script src="../js/zTree/jquery.ztree.core.js"></script>
408
+    	<script src="../js/search/screen.js"></script>
375 409
 		<script>
376 410
 			//							return '<div class="imgs" >' +
377 411
 			//								'<a class="xg"  title="查看" onclick="ckxq(' + val + ')"> <i class="fa fa-search"></i></a>' +

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

@@ -2,8 +2,8 @@
2 2
     var huayi = {};
3 3
 }
4 4
 huayi.config = {
5
-    //callcenter_url: "http://192.168.4.18:4678/",//生产环境
6
-    callcenter_url: "http://localhost:63663/",//本地环境
5
+	callcenter_url: "http://192.168.4.18:4678/",//生产环境	
6
+//  callcenter_url: "http://localhost:63663/",//本地环境
7 7
     socket_ip: "192.168.5.7",//ip
8 8
     socket_port: "8081",//端口
9 9
     transfer_number: "3639091",//一键转市 底号号码

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

@@ -0,0 +1,27 @@
1
+function darptSearch() {
2
+	$('.xlAdd').css('display', 'none');
3
+	$(".selDpart1").css('display', 'block');
4
+	depart();
5
+}
6
+$("#sponsor").on('click', 'li', function() {
7
+	$(".selDpart1").css('display', 'none');
8
+	$(".inps").val($(this).html());
9
+	$("#PID").val($(this).attr("index"));
10
+	$("#Dpment").val($(this).text());
11
+	$(".Cleans").show();
12
+})
13
+///部门
14
+function depart() {
15
+	$("#sponsor").empty();
16
+	$.getJSON(huayi.config.callcenter_url + "Department/GetDeptListByDept", {
17
+		"token": $.cookie("token"),
18
+		dept: $('.inps').val(),
19
+	}, function(data) {
20
+		if(data.state.toLowerCase() == "success") {
21
+			var content = data.data;
22
+			$(content).each(function(i, n) {
23
+				$("<li index='" + n.F_DeptId + "'>" + n.F_DeptName + "</li>").appendTo("#sponsor");
24
+			})
25
+		}
26
+	})
27
+}