From 83d82ad034bcb8ac1b6362ed47c18eaf84960196 Mon Sep 17 00:00:00 2001 From: lcc <805383944@qq.com> Date: Mon, 8 Sep 2025 10:57:42 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=8E=B7=E5=8F=96=E5=88=86?= =?UTF-8?q?=E4=BA=AB=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/api.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/utils/api.js b/src/utils/api.js index feb845a..e6913f1 100644 --- a/src/utils/api.js +++ b/src/utils/api.js @@ -72,11 +72,13 @@ const WechatAuth = { const urlParams = new URLSearchParams(window.location.search); const friend_account_id = urlParams.get('friend_account_id'); const accountId = urlParams.get('accountId'); + const from = urlParams.get('from'); const response = service.post('/auto/login', { code: code, friend_account_id, - accountId + accountId, + from }); const result = await response;