From 08bd8ba01a84da41c017517425fd041af241d6b4 Mon Sep 17 00:00:00 2001 From: 10086 <845831435@qq.com> Date: Fri, 19 Jul 2024 10:47:10 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=82=AE=E7=AE=B1=E9=95=BF=E5=BA=A6?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=A0=A1=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: 邮箱最大长度修改 --- src/shared/index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/shared/index.ts b/src/shared/index.ts index 1dc927b..f47712e 100644 --- a/src/shared/index.ts +++ b/src/shared/index.ts @@ -99,6 +99,11 @@ export const privacyRules = [ }, ]; export const emailRules = [ + { + max: 100, + message: t('quickIssue.RIGHT_EMAIL_ADRESS'), + trigger: 'blur', + }, { required: true, message: t('quickIssue.EMAIL_ADRESS'), -- Gitee