处理page.json冲突

This commit is contained in:
2022-01-20 10:20:05 +08:00
18 changed files with 1529 additions and 265 deletions

View File

@@ -14,11 +14,10 @@ const getFriends = () => {
}, true)
}
const getUserInfo = async (targetId) => {
const [err, res] = await uni.request({
url: 'http://api.zh.shangkelian.cn/api/im/userInfo/' + targetId,
const getUserInfo = (targetId) => {
return request({
url: 'im/userInfo/' + targetId,
})
return res.data.data
}
export {