diff --git a/TUIKit/components/TUIContact/contact-list/index.vue b/TUIKit/components/TUIContact/contact-list/index.vue index 2fc75e55..be878d96 100644 --- a/TUIKit/components/TUIContact/contact-list/index.vue +++ b/TUIKit/components/TUIContact/contact-list/index.vue @@ -234,6 +234,7 @@ function selectItem(item: any) { (item: IContactInfoType) => (item as Friend)?.userID === (currentContactInfo.value as Friend)?.userID, ); } else if ((currentContactInfo.value as IGroupModel)?.groupID) { + targetListItem = contactListMap.value?.groupList?.list?.find( (item: IContactInfoType) => (item as IGroupModel)?.groupID === (currentContactInfo.value as IGroupModel)?.groupID, ); diff --git a/TUIKit/components/TUIContact/select-friend/index.vue b/TUIKit/components/TUIContact/select-friend/index.vue index 919d0deb..47fb7588 100644 --- a/TUIKit/components/TUIContact/select-friend/index.vue +++ b/TUIKit/components/TUIContact/select-friend/index.vue @@ -1,4 +1,5 @@