diff --git a/Touchkebao/src/pages/pc/ckbox/weChat/components/SidebarMenu/MessageList/MessageList.module.scss b/Touchkebao/src/pages/pc/ckbox/weChat/components/SidebarMenu/MessageList/MessageList.module.scss index 0bed38fc..4e93b88c 100644 --- a/Touchkebao/src/pages/pc/ckbox/weChat/components/SidebarMenu/MessageList/MessageList.module.scss +++ b/Touchkebao/src/pages/pc/ckbox/weChat/components/SidebarMenu/MessageList/MessageList.module.scss @@ -171,20 +171,6 @@ } } - // 同步状态提示 - .refreshIndicator { - padding: 8px; - text-align: center; - font-size: 12px; - color: #999; - background: #f5f5f5; - border-bottom: 1px solid #e8e8e8; - - :global(.ant-spin) { - margin-right: 6px; - } - } - // 加载状态 .loading { padding: 16px; @@ -192,3 +178,12 @@ color: #999; } } +// 刷新提示 +.refreshingTip { + padding: 8px 15px; + background-color: #e6f7ff; + border-bottom: 1px solid #91d5ff; + color: #1890ff; + font-size: 12px; + text-align: center; +} diff --git a/Touchkebao/src/pages/pc/ckbox/weChat/components/SidebarMenu/MessageList/index.tsx b/Touchkebao/src/pages/pc/ckbox/weChat/components/SidebarMenu/MessageList/index.tsx index ab344821..73b083dc 100644 --- a/Touchkebao/src/pages/pc/ckbox/weChat/components/SidebarMenu/MessageList/index.tsx +++ b/Touchkebao/src/pages/pc/ckbox/weChat/components/SidebarMenu/MessageList/index.tsx @@ -526,9 +526,7 @@ const MessageList: React.FC = () => {
{loading &&
加载中...
} {refreshing && !loading && ( -
- 正在同步... -
+
正在同步消息...
)}