联调接口

This commit is contained in:
xuli3099
2025-08-13 18:15:04 +08:00
parent 0728d92094
commit 28f24a90fd
18 changed files with 516 additions and 280 deletions

View File

@@ -56,14 +56,19 @@ export function logout(data) {
data
})
}
// 获取用户信息
export function getUserInfo(data) {
return request.post({
url: '/api/getUserInfo',
return request.get({
url: '/acc/profile/userInfo',
data
})
}
// 查询当前用户常用功能
export function getUserFavorite(data) {
return request.post({
url: '/acc/profile/favorite',
data
})
}