feat: 完善对接接口

This commit is contained in:
橙子
2025-03-09 16:21:39 +08:00
parent b48f584db8
commit d605809932
9 changed files with 311 additions and 55 deletions

View File

@@ -75,9 +75,9 @@ export function getUserProfile() {
}
// 查询bbs个人信息
export function getBbsUserProfile(userName) {
export function getBbsUserProfile(userNameOrId) {
return request({
url: `/bbs-user/${userName}`,
url: `/bbs-user/${userNameOrId}`,
method: "get",
});
}