From acf0127d5c92e9375290fc8705a8c456e23157c5 Mon Sep 17 00:00:00 2001 From: shih <510524130@qq.com> Date: Mon, 11 May 2026 10:54:07 +0800 Subject: [PATCH] =?UTF-8?q?fix(login):=20=E4=BF=AE=E5=A4=8D=E7=BB=9F?= =?UTF-8?q?=E4=B8=80=E8=BA=AB=E4=BB=BD=E8=AE=A4=E8=AF=81=E8=B7=B3=E8=BD=AC?= =?UTF-8?q?=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将isTs变量从false修改为true以启用统一身份认证跳转功能 - 确保在没有ticket和token的情况下正确跳转到统一身份认证页面 Signed-off-by: Gjm <你的邮箱> --- 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 dffb057..d3a2c35 100644 --- a/src/views/login.vue +++ b/src/views/login.vue @@ -285,7 +285,7 @@ export default { return; } // 没有ticket且没有token,跳转统一身份认证 - const isTs = false; + const isTs = true; if (isTs) { window.location.href = 'http://192.168.1.241/login?redirect=/lig/oauth2/oauth2/application&appid=330b4ecb60c9a6802b957fe1e5a5ecd3&url=http%3A%2F%2F192.168.1.241%3A9000%2Flogin' +