From d13efc10f2a59705f142d24c5b05f925b7f9b131 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 12 十一月 2025 18:05:15 +0800
Subject: [PATCH] fix: 四流

---
 src/constants/regExp.ts |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/constants/regExp.ts b/src/constants/regExp.ts
index f160fe8..8c4887b 100644
--- a/src/constants/regExp.ts
+++ b/src/constants/regExp.ts
@@ -9,4 +9,7 @@
   static PasswordRegexNoSymbol =
     // eslint-disable-next-line no-useless-escape
     /^(?![\d]+$)(?![a-z]+$)(?![A-Z]+$)[a-zA-Z\d]{6,16}$/;
+  static PasswordRegexOnlyLetterNumber =
+    // eslint-disable-next-line no-useless-escape
+    /^[a-zA-Z0-9]+$/;
 }

--
Gitblit v1.9.1