修改字符限制

This commit is contained in:
liaozetao
2024-04-15 16:29:00 +08:00
parent 4c4f17ae60
commit 9b881b205a

View File

@@ -527,7 +527,7 @@ export default {
$("#tipMsg").text("阿语铭牌名字不能为空");
$("#tipModal").modal('show');
return;
}else if (ar_name.length > 5) {
}else if (ar_name.length > 500) {
$("#tipMsg").text("阿语铭牌名字最多5个字");
$("#tipModal").modal('show');
return;
@@ -536,7 +536,7 @@ export default {
$("#tipMsg").text("英语铭牌名字不能为空");
$("#tipModal").modal('show');
return;
}else if (en_name.length > 5) {
}else if (en_name.length > 500) {
$("#tipMsg").text("英语铭牌名字最多5个字");
$("#tipModal").modal('show');
return;