From 4b78caaeca6ef5c61a2948cf24746cf3c710e380 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Sun, 28 Apr 2024 15:50:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=85=AC=E5=85=B1=E9=93=BE=E6=8E=A5bug?= =?UTF-8?q?=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/frontend/public/link.html | 5 ----- 1 file changed, 5 deletions(-) diff --git a/core/frontend/public/link.html b/core/frontend/public/link.html index 7f0e51ca94..635a6d4f8d 100644 --- a/core/frontend/public/link.html +++ b/core/frontend/public/link.html @@ -29,7 +29,6 @@ } return (false) } - console.log('document.cookie', document.cookie); const link = getQueryVariable('link') const user = getQueryVariable('user') const terminal = getQueryVariable('terminal') @@ -37,18 +36,14 @@ const fromLink = getQueryVariable('fromLink') const ticket = getQueryVariable('ticket') const baseUrl = window.location.pathname.replace('link.html', '') - console.log('encodeURIComponent(link)', encodeURIComponent(link)); - console.log('link(link)', link); let url = baseUrl + "#/delink?link=" + encodeURIComponent(link) if (terminal) { url += '&terminal=' + terminal } if (user) { - console.log('user(link)', encodeURIComponent(user)); url += '&user=' + encodeURIComponent(user) } if (attachParams) { - console.log('attachParams(link)', encodeURIComponent(attachParams)); url += '&attachParams=' + encodeURIComponent(attachParams) } if (fromLink) {