Commit c8ef7242 authored by 罗新东's avatar 罗新东

修改了修改密码提示

parent ed33e089
Pipeline #7583 passed with stage
in 10 seconds
...@@ -44,9 +44,9 @@ ...@@ -44,9 +44,9 @@
label="再次输入" label="再次输入"
placeholder="再次输入新密码" placeholder="再次输入新密码"
:rules="[ :rules="[
{ validator, required: true, message: '二次输入不正确' }, { validator, required: true, message: '二次密码输入不一致' },
{ {
message: '密码必须大于6个字符小于20个字符', message: '密码必须大于等于6个字符小于20个字符',
validator: (val) => { validator: (val) => {
return val['length'] >= 6 && val['length'] < 20; return val['length'] >= 6 && val['length'] < 20;
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment