修改字符限制
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user