This commit is contained in:
qsh
2026-02-04 16:02:57 +08:00
parent 4a2d3dfda0
commit 4715116d15
3 changed files with 51 additions and 26 deletions

View File

@@ -40,3 +40,11 @@ export const getAccountInfo = async id => {
params: { id }
});
};
// 获取个人账号详情
export const getPersonAccount = async () => {
return request({
url: '/applet/xunjia/account/person/get',
method: 'get'
});
};