From 0e85cb2dd5b1b83f8b81cbf1344ed59aad366392 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=83=A1=E5=B0=91=E7=BF=94?= <971366405@qq.com> Date: Fri, 2 Aug 2024 10:23:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20:bug:=20=E7=99=BB=E5=BD=95=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E7=99=BB=E5=BD=95=E5=B1=9E=E6=80=A7=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E9=AA=8C=E8=AF=81=E7=A0=81=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 登录页面登录属性增加验证码属性 --- src/views/login/index.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/login/index.vue b/src/views/login/index.vue index f43353ea..4ebe87c3 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -91,13 +91,14 @@ size="large" class="w-full" @click.prevent="handleLoginSubmit" - >{{ $t("login.login") }} + > + {{ $t("login.login") }}
{{ $t("login.username") }}: admin - {{ $t("login.password") }}: 123456 + {{ $t("login.password") }}: 123456
@@ -155,6 +156,8 @@ const loginFormRef = ref(); const loginData = ref({ username: "admin", password: "123456", + captchaKey: "", + captchaCode: "", } as LoginData); const loginRules = computed(() => {