This commit is contained in:
2022-01-20 16:28:37 +08:00
26 changed files with 1996 additions and 1048 deletions

View File

@@ -19,9 +19,20 @@ const getUserInfo = (targetId) => {
url: 'im/userInfo/' + targetId,
})
}
/**
* 获取好友申请列表
*/
const getPedings = () => {
return request({
url: 'im/friends/pending'
})
}
export {
getImToken,
getFriends,
getUserInfo
getUserInfo,
getPedings
}