Przeglądaj źródła

大区办事处

liuyifan 5 lat temu
rodzic
commit
b44c8e416c

+ 1 - 1
CallCenterWeb.UI/css/WorkOrder/Search.css

409
 	top: 26px;
409
 	top: 26px;
410
 	z-index: 10;
410
 	z-index: 10;
411
 	display: none;
411
 	display: none;
412
-	height: 300px;
412
+	height: 500px;
413
 	overflow-y: auto;
413
 	overflow-y: auto;
414
 }
414
 }
415
 
415
 

+ 6 - 0
CallCenterWeb.UI/js/WorkOrder/WorkOrder.js

716
 	if (regionName.length > 0 ) {
716
 	if (regionName.length > 0 ) {
717
 		regionName = regionName.substring(0, regionName.length-1);
717
 		regionName = regionName.substring(0, regionName.length-1);
718
 		$("#searchRegionName").val(regionName);
718
 		$("#searchRegionName").val(regionName);
719
+	} else {
720
+		$("#searchRegionName").val(regionName);
719
 	}
721
 	}
720
 	if (regionId.length > 0 ) {
722
 	if (regionId.length > 0 ) {
721
 		regionId = regionId.substring(0, regionId.length-1);
723
 		regionId = regionId.substring(0, regionId.length-1);
722
 		$('#searchRegionId').attr("value",regionId);
724
 		$('#searchRegionId').attr("value",regionId);
723
 		getSubmitterManager();
725
 		getSubmitterManager();
726
+	} else {
727
+		$('#searchRegionId').attr("value",regionId);
724
 	}
728
 	}
725
 	if (officeId.length > 0 ) {
729
 	if (officeId.length > 0 ) {
726
 		officeId = officeId.substring(0, officeId.length-1);
730
 		officeId = officeId.substring(0, officeId.length-1);
727
 		$('#searchOfficeId').attr("value",officeId);
731
 		$('#searchOfficeId').attr("value",officeId);
728
 		getSubmitterSalesman();
732
 		getSubmitterSalesman();
733
+	} else {
734
+		$('#searchOfficeId').attr("value",officeId);
729
 	}
735
 	}
730
 }
736
 }
731
 
737