diff --git a/src/views/nameplate/NameplateInfoView.vue b/src/views/nameplate/NameplateInfoView.vue index e46853d..792b95b 100644 --- a/src/views/nameplate/NameplateInfoView.vue +++ b/src/views/nameplate/NameplateInfoView.vue @@ -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;