Commit 258c8a14 by 姜雷

修改密码输入提示语

parent 251e7966
......@@ -121,7 +121,7 @@ class Register extends Component {
}
if (!pwd || pwd.length < 6) {
Taro.showToast({
title: '请输入密码',
title: '请输入大于6位密码',
icon: 'none',
});
return false;
......
......@@ -85,7 +85,7 @@ class ResetPwd extends Component {
}
if (!checkPwd || checkPwd.length < 6) {
Taro.showToast({
title: '请输入大于6位密码',
title: '请输入确认密码',
icon: 'none',
});
return false;
......
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