mirror of
https://gitee.com/log4j/pig-ui.git
synced 2024-12-23 05:40:20 +08:00
bug: fix 账号密码校验未触发
This commit is contained in:
parent
69403bfc0c
commit
88cf044c4f
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-form size="large" class="login-content-form" ref="loginFormRef" :rules="loginRules" :model="state.ruleForm" @keyup.enter="handleVerify">
|
<el-form size="large" class="login-content-form" ref="loginFormRef" :rules="loginRules" :model="state.ruleForm" @keyup.enter="handleVerify">
|
||||||
<el-form-item class="login-animation1">
|
<el-form-item class="login-animation1" prop="username">
|
||||||
<el-input text :placeholder="$t('password.accountPlaceholder1')" v-model="state.ruleForm.username" clearable autocomplete="off">
|
<el-input text :placeholder="$t('password.accountPlaceholder1')" v-model="state.ruleForm.username" clearable autocomplete="off">
|
||||||
<template #prefix>
|
<template #prefix>
|
||||||
<el-icon class="el-input__icon">
|
<el-icon class="el-input__icon">
|
||||||
@ -9,7 +9,7 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-input>
|
</el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item class="login-animation2">
|
<el-form-item class="login-animation2" prop="password">
|
||||||
<el-input
|
<el-input
|
||||||
:type="state.isShowPassword ? 'text' : 'password'"
|
:type="state.isShowPassword ? 'text' : 'password'"
|
||||||
:placeholder="$t('password.accountPlaceholder2')"
|
:placeholder="$t('password.accountPlaceholder2')"
|
||||||
@ -76,7 +76,7 @@ const verifyref = ref<InstanceType<typeof Verify>>(null); // 定义verify组件
|
|||||||
|
|
||||||
// 调用滑块验证码进行校验
|
// 调用滑块验证码进行校验
|
||||||
const handleVerify = async () => {
|
const handleVerify = async () => {
|
||||||
const valid = await loginFormRef.value.validate(); // 表单校验
|
const valid = await loginFormRef.value.validate().catch(() => {}); // 表单校验
|
||||||
if (valid) {
|
if (valid) {
|
||||||
verifyref.value.show(); // 显示验证组件
|
verifyref.value.show(); // 显示验证组件
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user