From 056cf2a268a27a8f567e3fd26deae54b91507516 Mon Sep 17 00:00:00 2001 From: xsx <825657193@qq.com> Date: Wed, 6 Aug 2025 11:29:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96:=20=E4=BC=9A=E8=AF=9D?= =?UTF-8?q?=E3=80=81=E5=A5=BD=E5=8F=8B=E3=80=81=E7=BE=A4=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=E7=BC=A9=E7=95=A5=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/bx/implatform/service/impl/FriendServiceImpl.java | 2 +- im-uniapp/components/group-item/group-item.vue | 2 +- im-uniapp/pages/common/user-info.vue | 2 +- im-uniapp/pages/friend/friend-add.vue | 2 +- im-uniapp/pages/group/group-info.vue | 2 +- im-web/src/components/common/UserInfo.vue | 2 +- im-web/src/components/friend/AddFriend.vue | 2 +- im-web/src/components/group/GroupItem.vue | 2 +- im-web/src/view/Friend.vue | 2 +- im-web/src/view/Group.vue | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/im-platform/src/main/java/com/bx/implatform/service/impl/FriendServiceImpl.java b/im-platform/src/main/java/com/bx/implatform/service/impl/FriendServiceImpl.java index e0b10ad..82fc1df 100644 --- a/im-platform/src/main/java/com/bx/implatform/service/impl/FriendServiceImpl.java +++ b/im-platform/src/main/java/com/bx/implatform/service/impl/FriendServiceImpl.java @@ -132,7 +132,7 @@ public class FriendServiceImpl extends ServiceImpl impleme friend.setUserId(userId); friend.setFriendId(friendId); User friendInfo = userMapper.selectById(friendId); - friend.setFriendHeadImage(friendInfo.getHeadImage()); + friend.setFriendHeadImage(friendInfo.getHeadImageThumb()); friend.setFriendNickName(friendInfo.getNickName()); friend.setDeleted(false); this.saveOrUpdate(friend); diff --git a/im-uniapp/components/group-item/group-item.vue b/im-uniapp/components/group-item/group-item.vue index 14b4a63..48a7481 100644 --- a/im-uniapp/components/group-item/group-item.vue +++ b/im-uniapp/components/group-item/group-item.vue @@ -1,6 +1,6 @@