feat: 修改助手名字,删除黑暗模式按钮

This commit is contained in:
肖应宇 2026-03-12 11:36:52 +08:00
parent 2417a769bb
commit bb44134e08
2 changed files with 9 additions and 14 deletions

View File

@ -2,7 +2,7 @@
<div class="welcome-screen"> <div class="welcome-screen">
<!-- Logo 和标题 --> <!-- Logo 和标题 -->
<div class="welcome-header"> <div class="welcome-header">
<h1 class="title">教研聊天助手</h1> <h1 class="title">学习研聊天助手</h1>
</div> </div>
<!-- 功能卡片 --> <!-- 功能卡片 -->

View File

@ -124,21 +124,21 @@
</div> </div>
<!-- 底部操作 --> <!-- 底部操作 -->
<div class="sidebar-footer"> <!-- <div class="sidebar-footer">
<button class="footer-btn" @click="toggleTheme" title="切换主题"> <button class="footer-btn" @click="toggleTheme" title="切换主题">
<Sun v-if="currentTheme === 'light'" :size="18" /> <Sun v-if="currentTheme === 'light'" :size="18" />
<Moon v-else-if="currentTheme === 'dark'" :size="18" /> <Moon v-else-if="currentTheme === 'dark'" :size="18" />
<Monitor v-else :size="18" /> <Monitor v-else :size="18" />
</button> </button>
<!-- 键盘快捷键 --> 键盘快捷键
<!-- <button class="footer-btn" @click="openShortcuts" title="快捷键"> <button class="footer-btn" @click="openShortcuts" title="快捷键">
<Keyboard :size="18" /> <Keyboard :size="18" />
</button> --> </button>
<!-- dev人员可用 --> dev人员可用
<!-- <button class="footer-btn" @click="openSettings" title="设置"> <button class="footer-btn" @click="openSettings" title="设置">
<Settings :size="18" /> <Settings :size="18" />
</button> --> </button>
</div> </div> -->
</div> </div>
<!-- 拖拽调整宽度 --> <!-- 拖拽调整宽度 -->
@ -157,9 +157,6 @@ import {
Plus, Plus,
Pin, Pin,
MessageSquare, MessageSquare,
Sun,
Moon,
Monitor,
Sparkles, Sparkles,
ChevronDown, ChevronDown,
Check, Check,
@ -688,7 +685,5 @@ if (typeof window !== "undefined") {
height: 100%; height: 100%;
cursor: col-resize; cursor: col-resize;
z-index: 10; z-index: 10;
} }
</style> </style>