From 0e2ece5340f77236fe02816e836ecef68ae13c23 Mon Sep 17 00:00:00 2001 From: Radium <258815@qq.com> Date: Sat, 9 Dec 2023 11:19:18 +0800 Subject: [PATCH] =?UTF-8?q?:bug:=E9=AA=8C=E8=AF=81=E7=A0=81=E5=BC=80?= =?UTF-8?q?=E5=85=B3=E7=9A=84=E8=BF=94=E5=9B=9E=E5=80=BC=E4=B8=8E=E5=90=8E?= =?UTF-8?q?=E7=AB=AF=E4=B8=8D=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/login.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/login.vue b/src/views/login.vue index c67e7df..6493d97 100644 --- a/src/views/login.vue +++ b/src/views/login.vue @@ -135,7 +135,7 @@ export default { methods: { getCode() { getCodeImg().then(res => { - this.captchaEnabled = res.captchaEnabled === undefined ? true : res.captchaEnabled; + this.captchaEnabled = res.captchaOnOff === undefined ? true : res.captchaOnOff; if (this.captchaEnabled) { this.codeUrl = "data:image/gif;base64," + res.img; this.loginForm.uuid = res.uuid; -- Gitee