完成登录的基本流程

This commit is contained in:
2025-04-24 11:19:57 +08:00
parent 2ce4777910
commit 94b03b98a8
84 changed files with 1458 additions and 548 deletions

View File

@ -169,4 +169,12 @@ export function getShareMnQrcode(params) {
return request.get("share/getMnQrcode", {
params
});
}
// 小程序一键登录
export function mobileLogin(data) {
return request.post("account/mobileLogin", {
...data,
client
});
}