diff --git a/src/pages/ChatLogs/index.module.scss b/src/pages/ChatLogs/index.module.scss index d14fb12..31230a5 100644 --- a/src/pages/ChatLogs/index.module.scss +++ b/src/pages/ChatLogs/index.module.scss @@ -42,6 +42,7 @@ .chatAMsg { display: flex; flex: 1; + flex-shrink: 0; align-items: flex-start; min-width: 0; padding-left: 12px; @@ -49,6 +50,7 @@ .chatAName { flex: 1; flex-shrink: 0; + width: 100%; min-width: 0; overflow: hidden; font-size: 16px; diff --git a/src/pages/ChatLogs/index.tsx b/src/pages/ChatLogs/index.tsx index 157307a..4ed1871 100644 --- a/src/pages/ChatLogs/index.tsx +++ b/src/pages/ChatLogs/index.tsx @@ -420,30 +420,6 @@ const ChatLogs: React.FC = () => { 暂无外部联系人 )} -
-
{ - setDelFollowListShow(!delFollowListShow); - }} - > - 已删联系人 - {delFollowListShow ? : } -
-
- {custFollowsList.map((item) => { - return item.state == 1 ? null : custFollowsListItem(item); - })} -
-
); } else { @@ -458,30 +434,6 @@ const ChatLogs: React.FC = () => { 暂无客户群聊 )} -
-
{ - setDelGroupListShow(!delGroupListShow); - }} - > - 已解散的群 - {delGroupListShow ? : } -
-
- {groupList.map((item) => { - return item.state == 1 ? null : groupListItem(item); - })} -
-
); }