Kaynağa Gözat

大区办事处

liuyifan 5 yıl önce
ebeveyn
işleme
b44c8e416c

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

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

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

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