登录免授权

This commit is contained in:
wss 2025-06-09 13:09:59 +08:00
parent f970bd4479
commit 1d19c32d93

View File

@ -95,6 +95,22 @@ const AuthUtil = {
}, },
}); });
}, },
// 查询
checkLogin: (type, code, state) => {
return request({
url: '/member/auth/checkLogin',
method: 'POST',
data: {
type,
code,
state,
},
custom: {
showSuccess: true,
// loadingMsg: '查询中',
},
});
},
// 微信小程序的一键登录 // 微信小程序的一键登录
weixinMiniAppLogin: (phoneCode, loginCode, state) => { weixinMiniAppLogin: (phoneCode, loginCode, state) => {
return request({ return request({