From 0e51fdcd6991f9ab95c87490075d8b4e8bc0253b Mon Sep 17 00:00:00 2001 From: zoujing Date: Wed, 27 Aug 2025 18:37:50 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=A0=BC=E5=BC=8F=E5=8C=96=E4=BB=A3?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/chat/ChatCardAI.vue | 113 +- pages/chat/ChatCardMine.vue | 77 +- pages/chat/ChatCardOther.vue | 57 +- pages/chat/ChatInputArea.vue | 425 ++++--- pages/chat/ChatMainList.vue | 1022 ++++++++--------- pages/chat/ChatMarkdown.vue | 27 +- pages/chat/ChatQuickAccess.vue | 226 ++-- pages/chat/ChatTopBgImg.vue | 28 +- pages/chat/ChatTopNavBar.vue | 80 +- pages/chat/ChatTopWelcome.vue | 87 +- pages/chat/styles/ChatMainList.scss | 302 ++--- pages/drawer/DrawerHome.vue | 88 +- pages/drawer/MineSetting.vue | 68 +- pages/module/attach/AttachListComponent.vue | 37 +- pages/module/banner/ActivityListComponent.vue | 144 +-- pages/module/booking/QuickBookingCalender.vue | 1 - .../module/booking/QuickBookingComponent.vue | 2 +- pages/module/detail/DetailCardCompontent.vue | 45 +- .../discovery/DiscoveryCardComponent.vue | 65 +- .../discovery/DiscoveryCradContentList.vue | 88 +- .../recommend/RecommendPostsComponent.vue | 42 +- 21 files changed, 1502 insertions(+), 1522 deletions(-) diff --git a/pages/chat/ChatCardAI.vue b/pages/chat/ChatCardAI.vue index b49c2d7..6da762a 100644 --- a/pages/chat/ChatCardAI.vue +++ b/pages/chat/ChatCardAI.vue @@ -1,14 +1,18 @@ diff --git a/pages/chat/ChatCardMine.vue b/pages/chat/ChatCardMine.vue index 10c1b5e..ff9e58d 100644 --- a/pages/chat/ChatCardMine.vue +++ b/pages/chat/ChatCardMine.vue @@ -1,46 +1,45 @@ \ No newline at end of file +.chat-mine { + margin: 6px 12px; + padding: 8px 16px; + + background-color: #00a6ff; + box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1); + border-radius: 20px 4px 20px 20px; + border: 1px solid; + border-color: #ffffff; + + display: flex; + flex-direction: column; + max-width: 100%; // ✅ 限制最大宽度 + overflow-x: hidden; // ✅ 防止横向撑开 + + text { + font-family: PingFang SC, PingFang SC; + font-weight: 400; + font-size: 14px; + color: #ffffff; + line-height: 22px; + text-align: justify; + font-style: normal; + text-transform: none; + } +} + diff --git a/pages/chat/ChatCardOther.vue b/pages/chat/ChatCardOther.vue index 51f0c51..e20cf83 100644 --- a/pages/chat/ChatCardOther.vue +++ b/pages/chat/ChatCardOther.vue @@ -1,36 +1,35 @@ \ No newline at end of file +.chat-other { + width: 100%; + margin: 6px 0; + padding: 0 12px; + display: flex; + flex-direction: column; + max-width: 100%; // ✅ 限制最大宽度 + overflow-x: hidden; // ✅ 防止横向撑开 + + text { + font-family: PingFang SC, PingFang SC; + font-weight: 400; + font-size: 14px; + color: #333333; + } +} + diff --git a/pages/chat/ChatInputArea.vue b/pages/chat/ChatInputArea.vue index c6d6d1d..97c00ad 100644 --- a/pages/chat/ChatInputArea.vue +++ b/pages/chat/ChatInputArea.vue @@ -1,65 +1,62 @@