From 30d572757ef13c58770d0bed1a7356c6f1ad81d4 Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期三, 15 三月 2023 09:31:46 +0800 Subject: [PATCH] 规则校验 --- management/guns-admin/src/main/webapp/WEB-INF/view/system/tBranchOffice/tBranchOffice_edit.html | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/management/guns-admin/src/main/webapp/WEB-INF/view/system/tBranchOffice/tBranchOffice_edit.html b/management/guns-admin/src/main/webapp/WEB-INF/view/system/tBranchOffice/tBranchOffice_edit.html index 8b42aa4..4efc1a3 100644 --- a/management/guns-admin/src/main/webapp/WEB-INF/view/system/tBranchOffice/tBranchOffice_edit.html +++ b/management/guns-admin/src/main/webapp/WEB-INF/view/system/tBranchOffice/tBranchOffice_edit.html @@ -17,7 +17,7 @@ <div class="initialLevel col-sm-3 control-label form-group" > <span style="color:red">*</span> <label class="control-label" >分公司名称:</label> - <input id="branchOfficeName" value="${item.branchOfficeName}" name="branchOfficeName" type="text" style="height: 30px" required="required"> + <input id="branchOfficeName" value="${item.branchOfficeName}" name="branchOfficeName" type="text" maxlength="20" style="height: 30px" required="required"> </div> </div> @@ -25,19 +25,19 @@ <div class="initialLevel col-sm-3 control-label form-group" > <span style="color:red">*</span> <label class="control-label" >负责人姓名:</label> - <input id="principal" value="${item.principal}" name="principal" type="text" style="height: 30px" required="required"> + <input id="principal" value="${item.principal}" name="principal" type="text" maxlength="20" style="height: 30px" required="required"> </div> <div class="initialLevel col-sm-3 control-label form-group" > <span style="color:red">*</span> <label class="control-label" >联系电话:</label> - <input id="principalPhone" value="${item.principalPhone}" name="principalPhone" type="number" style="height: 30px" required="required"> + <input id="principalPhone" value="${item.principalPhone}" name="principalPhone" type="number" maxlength="20" style="height: 30px" required="required"> </div> </div> <div class="initialLevel col-sm-12 control-label form-group" > <div class="initialLevel col-sm-3 control-label form-group" > <label class="control-label" >邮箱:</label> - <input id="email" value="${item.email}" type="email" style="height: 30px"> + <input id="email" value="${item.email}" type="email" maxlength="40" style="height: 30px"> </div> </div> @@ -52,14 +52,14 @@ <div class="initialLevel col-sm-12 control-label form-group" > <div class="initialLevel col-sm-3 control-label form-group" > <label class="control-label" >开户银行:</label> - <input id="bankDeposit" value="${item.bankDeposit}" type="text" style="height: 30px"> + <input id="bankDeposit" value="${item.bankDeposit}" type="text" maxlength="20" style="height: 30px"> </div> </div> <div class="initialLevel col-sm-12 control-label form-group" > <div class="initialLevel col-sm-3 control-label form-group" > <label class="control-label" >银行账户:</label> - <input id="bankAccount" value="${item.bankAccount}" type="text" style="height: 30px"> + <input id="bankAccount" value="${item.bankAccount}" type="text" maxlength="20" style="height: 30px"> </div> </div> -- Gitblit v1.7.1