From 2e4b6d150a94e26c2a2d97381ca271f2c2ad286d Mon Sep 17 00:00:00 2001 From: feng626 <1304903146@qq.com> Date: Thu, 28 Oct 2021 13:46:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=99=BB=E5=BD=95=E5=A4=8D=E5=90=88?= =?UTF-8?q?=E6=B5=8F=E8=A7=88=E5=99=A8=E4=B8=8D=E5=85=BC=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../templates/authentication/login_wait_confirm.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/authentication/templates/authentication/login_wait_confirm.html b/apps/authentication/templates/authentication/login_wait_confirm.html index e72a44738..518e2f03e 100644 --- a/apps/authentication/templates/authentication/login_wait_confirm.html +++ b/apps/authentication/templates/authentication/login_wait_confirm.html @@ -159,7 +159,9 @@ $(document).ready(function () { }).on('click', '.btn-return', function () { cancelTicket(); cancelCloseConfirm(); - window.location = "{% url 'authentication:login' %}" + setTimeout(() => { + window.location = "{% url 'authentication:login' %}" + }, 1000); })