From 4fa875426ce38ccb42af65bffdd2e6d393a63ce8 Mon Sep 17 00:00:00 2001
From: LSH
Date: 星期五, 21 七月 2023 15:21:30 +0800
Subject: [PATCH] #客户名称长度限制
---
src/main/webapp/static/js/cstmr/cstmr.js | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/src/main/webapp/static/js/cstmr/cstmr.js b/src/main/webapp/static/js/cstmr/cstmr.js
index d53d7a0..6a19a12 100644
--- a/src/main/webapp/static/js/cstmr/cstmr.js
+++ b/src/main/webapp/static/js/cstmr/cstmr.js
@@ -193,6 +193,14 @@
// 娣诲姞
$("#cstmrAddBtn").click(function () {
+ form.verify({
+ account: function(value, item){
+ var min = item.getAttribute('lay-min');
+ if(value.length < min){
+ return '瀹㈡埛鍚嶇О涓嶈兘灏忎簬'+min+'涓瓧绗︾殑闀垮害';
+ }
+ }
+ });
showEditModel();
});
@@ -255,6 +263,14 @@
title: (mData ? '淇敼' : '娣诲姞') + '鐢叉柟鍗曚綅',
content: $('#editDialog').html(),
success: function (layero, dIndex) {
+ form.verify({
+ name: function(value, item){
+ var min = item.getAttribute('lay-min');
+ if(value.length < min){
+ return '瀹㈡埛鍚嶇О涓嶈兘灏忎簬'+min+'涓瓧绗︾殑闀垮害';
+ }
+ }
+ });
if (mData) {
$('#cascaderVal').val(mData.pcd);
}
--
Gitblit v1.9.1