From 14bda2759a755df648c2d374e22e05c69e1daddf Mon Sep 17 00:00:00 2001 From: wxg0103 <727495428@qq.com> Date: Wed, 30 Oct 2024 17:01:32 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E9=92=89=E9=92=89?= =?UTF-8?q?=E6=89=AB=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/views/login/components/dingtalkQrCode.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ui/src/views/login/components/dingtalkQrCode.vue b/ui/src/views/login/components/dingtalkQrCode.vue index 062840b19..98784108c 100644 --- a/ui/src/views/login/components/dingtalkQrCode.vue +++ b/ui/src/views/login/components/dingtalkQrCode.vue @@ -102,9 +102,7 @@ const initActive = async () => { scope: 'openid', response_type: 'code', state: 'fit2cloud-ding-qr', - prompt: 'consent', - exclusiveLogin: 'true', - exclusiveCorpId: data.corp_id + prompt: 'consent' }, (loginResult) => { const authCode = loginResult.authCode @@ -114,6 +112,7 @@ const initActive = async () => { }, (errorMsg: string) => { MsgError(errorMsg) + console.log(errorMsg) } ) } catch (error) {