From 5296fbccbc9eb972d9bd952a9b06dfbc14c5d403 Mon Sep 17 00:00:00 2001 From: duanshuwen Date: Thu, 28 May 2026 23:29:26 +0800 Subject: [PATCH] refactor: migrate styles to Tailwind and clean up components - remove SCSS style files for ChatQuickAccess and ChatInputArea, replace with inline Tailwind utilities - uncomment ChatQuickAccess component in ChatMainList to re-enable the quick access bar - simplify speech recognition logic in ChatInputArea, update input placeholder text - replace direct uni.showToast calls with a shared helper function - remove unused keyboard height change listener and redundant keyboard hiding code --- .../home/components/ChatInputArea/index.vue | 124 ++++++------------ .../ChatInputArea/styles/index.scss | 115 ---------------- .../home/components/ChatMainList/index.vue | 4 +- .../home/components/ChatQuickAccess/index.vue | 15 +-- .../ChatQuickAccess/styles/index.scss | 15 --- 5 files changed, 50 insertions(+), 223 deletions(-) delete mode 100644 src/pages/home/components/ChatInputArea/styles/index.scss delete mode 100644 src/pages/home/components/ChatQuickAccess/styles/index.scss diff --git a/src/pages/home/components/ChatInputArea/index.vue b/src/pages/home/components/ChatInputArea/index.vue index be6f7c5..81caa46 100644 --- a/src/pages/home/components/ChatInputArea/index.vue +++ b/src/pages/home/components/ChatInputArea/index.vue @@ -1,58 +1,49 @@