From 9feb97b3926741a114ff7161530490ed9eb0f06d Mon Sep 17 00:00:00 2001 From: guoyuqi Date: Mon, 30 Sep 2024 10:28:47 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=89=AB=E7=A0=81=E7=99=BB=E5=BD=95):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=99=BB=E5=BD=95=E9=A1=B5=E9=9D=A2=E5=88=9D?= =?UTF-8?q?=E5=A7=8B=E5=8C=96=E7=99=BB=E5=BD=95=E6=B2=A1=E6=9C=89=E8=BF=87?= =?UTF-8?q?=E6=BB=A4=E5=88=A4=E6=96=ADxpack=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- framework/sdk-parent/frontend/src/business/login/index.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/framework/sdk-parent/frontend/src/business/login/index.vue b/framework/sdk-parent/frontend/src/business/login/index.vue index 8a6c27658b..986cd69484 100644 --- a/framework/sdk-parent/frontend/src/business/login/index.vue +++ b/framework/sdk-parent/frontend/src/business/login/index.vue @@ -223,7 +223,9 @@ export default { }, created: function () { document.addEventListener('keydown', this.watchEnter); - this.initPlatformInfo(); + if (hasLicense()) { + this.initPlatformInfo(); + } this.activeName = localStorage.getItem('loginType') || 'WE_COM'; let authenticate = localStorage.getItem('AuthenticateType'); if (authenticate === 'LOCAL' || authenticate === 'LDAP') {