From cab55c4c4f4c1253932acb8b9d0deaaaeb7a9221 Mon Sep 17 00:00:00 2001 From: wbc <942429426@qq.com> Date: Tue, 15 Jul 2025 09:15:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=86=E7=A0=81=E4=BF=AE=E6=94=B9=E6=8F=90?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/auth/profile/SecureSetting.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/auth/profile/SecureSetting.vue b/src/views/auth/profile/SecureSetting.vue index 7709f56..c86577e 100644 --- a/src/views/auth/profile/SecureSetting.vue +++ b/src/views/auth/profile/SecureSetting.vue @@ -32,7 +32,7 @@ label: '旧密码', component: 'InputPassword', rules: [ - { required: true, message: '请输入旧密码, 长度在 5 到 20 个字符', min: 5, max: 20 }, + { required: true, message: '请输入5~20个字符,大小写字母+数字+特殊字符组合', min: 5, max: 20 }, ], }, { @@ -40,10 +40,10 @@ label: '新密码', component: 'StrengthMeter', componentProps: { - placeholder: '请输入新密码, 长度在 5 到 20 个字符', + placeholder: '请输入5~20个字符,大小写字母+数字+特殊字符组合', }, rules: [ - { required: true, message: '请输入新密码, 长度在 5 到 20 个字符', min: 5, max: 20 }, + { required: true, message: '请输入5~20个字符,大小写字母+数字+特殊字符组合', min: 5, max: 20 }, ], }, {