diff --git a/src/components/CommentsModal.vue b/src/components/CommentsModal.vue index a43b49b..82bf69b 100644 --- a/src/components/CommentsModal.vue +++ b/src/components/CommentsModal.vue @@ -29,10 +29,17 @@
-
+
+ +
+
+

+ 评论区 + +

+
-

评论区

@@ -67,7 +74,7 @@ import { watch, onMounted, onUnmounted, nextTick } from 'vue' import { useUIStore } from '@/stores/ui' import { playTransitionUp, playTransitionDown } from '@/composables/useSound' import Artalk from 'artalk/dist/Artalk.mjs' -import { MessageCircle, ChevronLeft, X } from 'lucide-vue-next' +import { MessageCircle, ChevronLeft, X, Sparkles, Send } from 'lucide-vue-next' interface ArtalkInstance { destroy(): void diff --git a/src/components/KeyboardHelpPanel.vue b/src/components/KeyboardHelpPanel.vue index 385ebe9..bca0a64 100644 --- a/src/components/KeyboardHelpPanel.vue +++ b/src/components/KeyboardHelpPanel.vue @@ -42,34 +42,58 @@
-

导航

+

+ + 导航 +

- 关闭当前面板 + + + 关闭当前面板 + Esc
- 返回首页 + + + 返回首页 + H
- 打开/关闭设置 + + + 打开/关闭设置 + ,
- 打开/关闭评论 + + + 打开/关闭评论 + C
- 打开/关闭作品介绍 + + + 打开/关闭作品介绍 + V
- 打开/关闭搜索历史 + + + 打开/关闭搜索历史 + Y
- 站点导航 + + + 站点导航 + N
@@ -77,14 +101,23 @@
-

操作

+

+ + 操作 +

- 聚焦搜索框 + + + 聚焦搜索框 + /
- 显示/隐藏快捷键帮助 + + + 显示/隐藏快捷键帮助 + ?
@@ -92,18 +125,30 @@
-

滚动

+

+ + 滚动 +

- 回到顶部 + + + 回到顶部 + T
- 上一个平台 + + + 上一个平台 + [
- 下一个平台 + + + 下一个平台 + ]
@@ -119,7 +164,12 @@ import { ref } from 'vue' import { useUIStore } from '@/stores/ui' import { playTransitionDown } from '@/composables/useSound' -import { Keyboard, X } from 'lucide-vue-next' +import { + Keyboard, X, + Home, Settings, MessageSquare, BookOpen, History, Grid3x3, Search, HelpCircle, + ArrowUp, ChevronLeft, ChevronRight, + Navigation, Command, Zap +} from 'lucide-vue-next' const uiStore = useUIStore() const panelRef = ref(null) diff --git a/src/components/ResultItem.vue b/src/components/ResultItem.vue index 284bc6b..ba50b66 100644 --- a/src/components/ResultItem.vue +++ b/src/components/ResultItem.vue @@ -1,5 +1,7 @@