From 20195d0e1cbbf3e8bfd20e2baf53e2115f663da3 Mon Sep 17 00:00:00 2001
From: zhouwenxuan <1175765986@qq.com>
Date: 星期三, 24 一月 2024 16:38:22 +0800
Subject: [PATCH] 评价结论

---
 src/layout/components/Register/index.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/layout/components/Register/index.vue b/src/layout/components/Register/index.vue
index d9aa4f3..e284428 100644
--- a/src/layout/components/Register/index.vue
+++ b/src/layout/components/Register/index.vue
@@ -246,7 +246,7 @@
         </el-row>
         <el-row :gutter="30" v-if="state.title == '新增/注册'">
           <el-col :span="12">
-            <el-form-item prop="password" label="密码">
+            <el-form-item prop="password" label="密码(字母+数字+特殊字符,长度在6-16之间)">
               <el-input
                   v-model.trim="registerForm.password"
                   type="password"
@@ -450,7 +450,7 @@
     callback(new Error('请输入密码'))
   }else{
     if(!verifyPwd(value)){
-      callback(new Error('密码须包含字母、数字、特殊字符(不包括下划线),长度在6-16之间'))
+      callback(new Error('密码须包含字母、数字、特殊字符,长度在6-16之间'))
     }else{
       callback()
     }

--
Gitblit v1.9.2