feat: 添加微信扫码登录功能

This commit is contained in:
wangqiao
2025-10-13 23:03:55 +08:00
parent 3f3ea878b9
commit 5baae7652f
5 changed files with 229 additions and 2 deletions

View File

@ -178,3 +178,11 @@ export const getWalletConfig = () => {
}>
>('/prod-api/app-api/pay/wallet/get-config', {})
}
/**
* 微信登录二维码链接
*/
export const getLoginQrcode = () => {
return useDollarFetchRequest.get<IResponse<string>>('/prod-api/app-api/member/auth/wx-login-url', {})
}