From e926e4cde02b3d694209d7b46d009dd26a7799a0 Mon Sep 17 00:00:00 2001 From: zhengw <247276359@qq.com> Date: Fri, 21 Apr 2023 15:19:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BC=80=E5=8F=91:=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E6=96=87=E5=AD=97=E8=B6=85=E5=87=BA,=20=E5=A4=9A=E4=B8=AA?= =?UTF-8?q?=E5=B7=B2=E5=88=A0=E9=99=A4=E8=8A=82=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/ChatLogs/index.module.scss | 2 ++ src/pages/ChatLogs/index.tsx | 48 ---------------------------- 2 files changed, 2 insertions(+), 48 deletions(-) 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); - })} -
-
); }