自动化立体仓库 - WMS系统
#
zjj
2025-04-14 2310cd72974e2fb7a5ec006c8c615379f5ba0b9a
src/main/webapp/views/password.html
@@ -91,11 +91,27 @@
                if (parent.$('#password').val() === hex_md5(val)) {
                    return "与旧密码不能相同";
                }
                let username = localStorage.getItem('username')
                if (!(username === 'super' || password === 'root')){
                    if(!checkPassword(val)){
                        //密码必须包含字符和数字
                        return "密码必须包含字符和数字长度不能少于8位,且不能包含连续数字和四位重复数字";
                    }
                }
            },
            rePwd: function (val) {
                if ($('#password').val() !== val){
                    return "密码不一致";
                }
                let username = localStorage.getItem('username')
                if (!(username === 'super' || password === 'root')){
                    if(!checkPassword(val)){
                        //密码必须包含字符和数字
                        return "密码必须包含字符和数字长度不能少于8位,且不能包含连续数字和四位重复数字";
                    }
                }
            }
        });