fix: reset slider-captcha after login failed (#6275)
This commit is contained in:
parent
e5c937396d
commit
6fbf1387f5
@ -111,10 +111,11 @@ const loginRef =
|
|||||||
async function onSubmit(params: Recordable<any>) {
|
async function onSubmit(params: Recordable<any>) {
|
||||||
authStore.authLogin(params).catch(() => {
|
authStore.authLogin(params).catch(() => {
|
||||||
// 登陆失败,刷新验证码的演示
|
// 登陆失败,刷新验证码的演示
|
||||||
|
const formApi = loginRef.value?.getFormApi();
|
||||||
|
// 重置验证码组件的值
|
||||||
|
formApi?.setFieldValue('captcha', false, false);
|
||||||
// 使用表单API获取验证码组件实例,并调用其resume方法来重置验证码
|
// 使用表单API获取验证码组件实例,并调用其resume方法来重置验证码
|
||||||
loginRef.value
|
formApi
|
||||||
?.getFormApi()
|
|
||||||
?.getFieldComponentRef<InstanceType<typeof SliderCaptcha>>('captcha')
|
?.getFieldComponentRef<InstanceType<typeof SliderCaptcha>>('captcha')
|
||||||
?.resume();
|
?.resume();
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user