feat: 新增语音转文字(ASR)功能

- 后端:新增 /api/audio/transcribe 接口,调用 Ollama whisper 进行语音识别
- 前端:新增 AudioTranscribePage.vue 页面,支持 MP3/WAV/M4A/OGG/FLAC 等格式
- 注册路由、工具卡片、智能助手欢迎语更新

Co-Authored-By: Claude Code <noreply@anthropic.com>
This commit is contained in:
eaiadmin
2026-09-14 00:53:36 +08:00
co-authored by Claude Code
parent 752c7837ef
commit 0455f064ac
299 changed files with 1588 additions and 432 deletions
@@ -0,0 +1,77 @@
/* 博昇内部培训平台 — 全局样式 */
/* 参考:docs/08_Design_Rules/DR01_Theme_System.md */
:root {
--nav-width: 189px;
--ai-panel-width: 360px;
--header-height: 0px; /* 无顶部导航 */
--top-rail-height: 72px;
--surface-bg: #ffffff;
--surface-border: #e4e7ed;
--surface-muted: #909399;
--surface-text: #303133;
--surface-soft: #f7f8fa;
/* Element Plus 主题色覆盖 */
--el-color-primary: #409eff;
--el-color-success: #67c23a;
--el-color-warning: #e6a23c;
--el-color-danger: #f56c6c;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body, #app {
height: 100%;
width: 100%;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
'Helvetica Neue', Arial, 'Noto Sans SC', sans-serif;
background-color: #f5f7fa;
}
/* 滚动条样式 */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-thumb {
background: #c0c4cc;
border-radius: 3px;
}
::-webkit-scrollbar-track {
background: transparent;
}
/* 通用页面容器 */
.page-container {
padding: 24px;
height: 100%;
overflow-y: auto;
}
/* AI 聊天气泡 */
.ai-bubble-user {
background-color: #ecf5ff;
border-radius: 12px 12px 4px 12px;
padding: 10px 14px;
margin: 8px 0;
max-width: 85%;
align-self: flex-end;
font-size: 14px;
line-height: 1.6;
}
.ai-bubble-assistant {
background-color: #f0f2f5;
border-radius: 12px 12px 12px 4px;
padding: 10px 14px;
margin: 8px 0;
max-width: 85%;
align-self: flex-start;
font-size: 14px;
line-height: 1.6;
}