修改获取分享参数

This commit is contained in:
lcc
2025-09-08 10:57:42 +08:00
parent 38160f9cca
commit 83d82ad034
+3 -1
View File
@@ -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;