zhengbingbing 8 jaren geleden
bovenliggende
commit
adfd2e8b27

+ 2 - 2
CallCenterWeb.UI/js/visit/MyVisitTask.js

@@ -148,9 +148,9 @@ function Pai(value, row, index) {
148 148
 function cutContent(val) {
149 149
 	if(val) {
150 150
 		var str = '<div '
151
-		if(val.length > 3) {
151
+		if(val.length > 10) {
152 152
 			str = str + ' title="' + val + '" ';
153
-			val = val.substr(0, 3) + "...";
153
+			val = val.substr(0, 10) + "...";
154 154
 		}
155 155
 		return str + '>' + val + '</div>';
156 156
 	} else {

+ 2 - 2
CallCenterWeb.UI/js/visit/myvisitlistreult.js

@@ -146,9 +146,9 @@ function Pai(value, row, index) {
146 146
 function cutContent(val) {
147 147
 	if(val) {
148 148
 		var str = '<div '
149
-		if(val.length > 3) {
149
+		if(val.length > 10) {
150 150
 			str = str + ' title="' + val + '" ';
151
-			val = val.substr(0, 3) + "...";
151
+			val = val.substr(0, 10) + "...";
152 152
 		}
153 153
 		return str + '>' + val + '</div>';
154 154
 	} else {

+ 2 - 2
CallCenterWeb.UI/js/visit/visitlistresult.js

@@ -143,9 +143,9 @@ function Pai(value, row, index) {
143 143
 function cutContent(val) {
144 144
 	if(val) {
145 145
 		var str = '<div '
146
-		if(val.length > 3) {
146
+		if(val.length > 10) {
147 147
 			str = str + ' title="' + val + '" ';
148
-			val = val.substr(0, 3) + "...";
148
+			val = val.substr(0, 10) + "...";
149 149
 		}
150 150
 		return str + '>' + val + '</div>';
151 151
 	} else {