Просмотр исходного кода

修改来电单位 闪的问题

zhangshuangnan лет назад: 7
Родитель
Сommit
cc99b0af3b

+ 2 - 10
CallCenterWeb.UI/WorkOrder/AddWorkOrder.html

@@ -175,10 +175,6 @@
175 175
 								<select name="" id="testInput1"  class="">
176 176
 									<option value="" selected>请选择来电单位</option>
177 177
 								</select>
178
-								<!--<input id="testInput1" type="text" style="width:100%;" />
179
-								<ul class="testInput-list">
180
-									<li></li>
181
-								</ul>-->
182 178
 							</td>
183 179
 						</tr>
184 180
 						<tr>
@@ -187,10 +183,6 @@
187 183
 								<select name="" id="testInput2"  class="">
188 184
 									<option value="" selected>请选择反馈单位</option>
189 185
 								</select>
190
-								<!--<input id="testInput2" type="text" style="width:100%;" style="display: none;" />
191
-								<ul class="testInput-list">
192
-									<li></li>
193
-								</ul>-->
194 186
 							</td>
195 187
 
196 188
 							<th>工单来源:</th>
@@ -363,7 +355,7 @@
363 355
 		<script src="../js/kindeditor/kindeditor.js"></script>
364 356
 		<script src="../js/kindeditor/lang/zh_CN.js"></script>
365 357
 		<script src="../js/WorkOrder/AddWorkOrder.js"></script>
366
-		<script>
358
+		<!--<script>
367 359
 			//自己写的方法(未能实现鼠标下移选中)
368 360
 			function Select(obj) {
369 361
 				obj.click(function(event) {
@@ -417,7 +409,7 @@
417 409
 
418 410
 			}
419 411
 			
420
-		</script>
412
+		</script>-->
421 413
 	</body>
422 414
 
423 415
 </html>

+ 2 - 2
CallCenterWeb.UI/js/comboSelect/combo.select.css

@@ -53,7 +53,7 @@
53 53
     content: " ";
54 54
     border-left: 5px solid transparent;
55 55
     border-right: 5px solid transparent;
56
-    border-top: 5px solid #cccccc;
56
+    border-top: 5px solid #676c6e;
57 57
     display: block;
58 58
     width: 0;
59 59
     height: 0;
@@ -70,7 +70,7 @@
70 70
   border-color: #51A7E8; }
71 71
   .combo-open .combo-arrow:before {
72 72
     border-top: none;
73
-    border-bottom: 5px solid #cccccc; }
73
+    border-bottom: 5px solid #676c6e; }
74 74
 
75 75
 /**
76 76
  * When focused

+ 2 - 6
CallCenterWeb.UI/js/comboSelect/jquery.combo.select.js

@@ -90,9 +90,7 @@
90 90
 		this._defaults = defaults;
91 91
 
92 92
 		/* Options */
93
-
94
-		this.$options = this.$el.find('option, optgroup')
95
-
93
+		this.$options = this.$el.find('option, optgroup');
96 94
 		/* Initialize */
97 95
 
98 96
 		this.init();
@@ -637,7 +635,7 @@
637 635
 			
638 636
 			/* Focus input field */			
639 637
 
640
-			this.settings.focusInput && setTimeout(function(){ !self.$input.is(':focus') && self.$input.focus(); });
638
+//			this.settings.focusInput && setTimeout(function(){ !self.$input.is(':focus') && self.$input.focus(); });
641 639
 
642 640
 			/* Highligh the items */
643 641
 
@@ -649,9 +647,7 @@
649 647
 
650 648
 			/* Close all others */
651 649
 
652
-
653 650
 			$.each($.fn[ pluginName ].instances, function(i, plugin){
654
-
655 651
 				if(plugin != self && plugin.opened) plugin.$container.trigger('comboselect:close')
656 652
 			})
657 653