From db1df052ebf16d1bfeae01a2ddc401ede561bed1 Mon Sep 17 00:00:00 2001
From: Jafeng <2998840497@qq.com>
Date: Tue, 26 May 2026 16:27:52 +0800
Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BC=98=E5=8C=96=E5=B8=B8=E7=94=A8?=
=?UTF-8?q?=E8=AF=AD=E5=8F=91=E9=80=81=E5=8A=9F=E8=83=BD=EF=BC=8C=E6=94=AF?=
=?UTF-8?q?=E6=8C=81=E5=8F=91=E9=80=81=E5=9B=BE=E7=89=87=E5=B9=B6=E9=87=8D?=
=?UTF-8?q?=E6=9E=84=E7=9B=B8=E5=85=B3=E9=80=BB=E8=BE=91?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/message/common-phrases.vue | 144 +++++++++++++++++-------
pages/message/components/chat-input.vue | 57 ++++++++++
pages/message/index.vue | 20 +++-
3 files changed, 176 insertions(+), 45 deletions(-)
diff --git a/pages/message/common-phrases.vue b/pages/message/common-phrases.vue
index d3e8e84..28dafc7 100644
--- a/pages/message/common-phrases.vue
+++ b/pages/message/common-phrases.vue
@@ -35,7 +35,7 @@
class="delete-badge"
@click.stop="deleteCategory(category)"
>
- ×
+
@@ -56,14 +56,21 @@
{{ currentCategoryName }}({{ currentPhrases.length }})
- ⌕
+
- ×
+
@@ -75,12 +82,6 @@
>
{{ phrase.content }}
-
- 已收藏
-
- ✈
+
发送
- ✎
+
编辑
- ⌫
+
删除
@@ -115,7 +116,12 @@
:class="{ collected: isFavorite(phrase) }"
@click.stop="toggleFavorite(phrase)"
>
- {{ isFavorite(phrase) ? "★" : "☆" }}
+
{{ isFavorite(phrase) ? "已收藏" : "收藏" }}
@@ -135,7 +141,7 @@