vue 验证正则表达式
//封装方法 isPwdNumber(str) { const reg = /^(?![A-Z]+$)(?![a-z]+$)(?!\d+$)(?![\W_]+$)\S{6,16}$/ return reg.test(str) },
//修改密码点击确认 handleOkPwd() { if(!this.isPwdNumber(this.newpwd.replace(/\s+/g,""))){ //this.error("密码格式不正确"); this.pwdTips='新密码密码格式不正确,6-12位,数字,大写字母,小写字母,特殊符号任意两种及以上。' this.oldpwdTip=true; return false; } }