this.$refs.form.validate((valid) => { if (!valid) return false
this.load_data = true
//登录提交
this.$fetch.api_user.login(this.form)
.then(({data, msg}) => { this.set_user_info({
user: data,
login: true
}) this.$message.success(msg)
setTimeout(this.$router.push({path: '/'}), 500)
})
.catch(({code}) => { this.load_data = false
if (code === port_code.error) { this.$notify.info({
title: '温馨提示',
message: '账号和密码都为:admin'
})
}
})
})表单验证中的valid值代表什么?什么情况下为true,什么时候为false,求大神指教
添加回答
举报
0/150
提交
取消