feat: 新增 Account 和 Script 页面

- 添加 Account 账户页面
- 添加 Script 脚本页面
- 优化侧边栏,添加知识库数量显示

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-09 16:08:38 +08:00
parent e633462ace
commit e40e794141
4 changed files with 107 additions and 18 deletions

15
web/src/views/Account.vue Normal file
View File

@@ -0,0 +1,15 @@
<script setup lang="ts">
// Account 页面 - 占位
</script>
<template>
<div class="p-6 min-h-screen">
<div class="flex items-center gap-2 mb-6">
<i class="fa-solid fa-user text-gray-400"></i>
<span class="font-medium">Account</span>
</div>
<div class="text-gray-400">
Account management coming soon...
</div>
</div>
</template>

15
web/src/views/Script.vue Normal file
View File

@@ -0,0 +1,15 @@
<script setup lang="ts">
// Script 页面 - 占位
</script>
<template>
<div class="p-6 min-h-screen">
<div class="flex items-center gap-2 mb-6">
<i class="fa-solid fa-code text-gray-400"></i>
<span class="font-medium">Script</span>
</div>
<div class="text-gray-400">
Script management coming soon...
</div>
</div>
</template>