From 0613c1694258d8f2b6db72300d2fe8f2ed5c4066 Mon Sep 17 00:00:00 2001 From: duanshuwen Date: Mon, 15 Jun 2026 11:16:10 +0800 Subject: [PATCH] fix(login): add clientId to mobile login request --- src/pages/login/index.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/login/index.vue b/src/pages/login/index.vue index 930c0c0..3c89338 100644 --- a/src/pages/login/index.vue +++ b/src/pages/login/index.vue @@ -253,6 +253,7 @@ async function handlePhoneLogin() { mobile: `${selectedCountry.value.dialCode}${phoneDigits}`, code: codeValue, grant_type: "mobile", + clientId: '6', }); emitter.emit(NOTICE_EVENT_LOGIN_SUCCESS); await navigateAfterLogin();