|
@@ -539,13 +539,13 @@ public class ExcelTabController extends BladeController {
|
|
|
if (is_true) {
|
|
|
element.children().get(0).attr("placeholder", lastName)
|
|
|
.attr("weighing", maxScore + "").attr("id", attrInfo).attr("keyName", attrInfo)
|
|
|
- .attr("@blur", "getRegularExpression(" + regularExpression + ")")
|
|
|
+ .attr("@blur", "getRegularExpression(" + regularExpression + ",'" + filedLength + "')")
|
|
|
.attr("v-model", "formData." + attrInfo)
|
|
|
.attr("maxlength", filedLength);
|
|
|
} else {
|
|
|
element.children().get(0).attr("placeholder", lastName)
|
|
|
.attr("weighing", maxScore + "").attr("id", attrInfo).attr("keyName", attrInfo)
|
|
|
- .attr("@blur", "getRegularExpression(" + regularExpression + ")")
|
|
|
+ .attr("@blur", "getRegularExpression(" + regularExpression + ",'" + filedLength + "')")
|
|
|
.attr("maxlength", filedLength);
|
|
|
}
|
|
|
element.attr("@click", "getInformation(" + oncklickText + ")");
|