Rename product to Dabenying QA assistant

This commit is contained in:
2026-07-09 12:28:55 +08:00
parent 6c53566a4e
commit facb3a6a56
15 changed files with 48 additions and 42 deletions

View File

@@ -1,6 +1,6 @@
# AI 知识库系统 V2 管理后台
# 大本营答疑助手管理后台
这是 V2 的管理后台,使用 Vue 3、Vite、TypeScript 和 Element Plus。
这是大本营答疑助手的管理后台,使用 Vue 3、Vite、TypeScript 和 Element Plus。
## 本地启动

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AI 知识库后台</title>
<title>大本营答疑助手后台</title>
</head>
<body>
<div id="app"></div>

View File

@@ -1035,21 +1035,21 @@ function buildChatQuery() {
<section class="login-hero">
<div class="login-hero-main">
<div class="login-brand">
<span>AI</span>
<strong>知识库管理后台</strong>
<span></span>
<strong>大本营答疑助手后台</strong>
</div>
<h1>让知识库Agent 和用户运营保持在同一个控制台里</h1>
<p>统一维护学员知识库模型配置问答记录和系统运行参数方便排查与交接</p>
<h1>把大本营答疑知识库和学员运营放在同一个控制台里</h1>
<p>统一维护学员名单开放知识库模型接入Agent 调试问答记录和系统运行参数方便排查与交接</p>
<div class="login-highlights">
<span>知识库运营</span>
<span>Agent 调试</span>
<span>记录审计</span>
<span>大本营知识库</span>
<span>答疑 Agent 调试</span>
<span>问答记录审计</span>
</div>
</div>
<section class="login-card">
<div class="login-card-head">
<h2>管理员登录</h2>
<p>请输入后台管理员账号和密码</p>
<h2>登录答疑后台</h2>
<p>请输入大本营答疑助手后台管理员账号和密码</p>
</div>
<el-form label-position="top" @submit.prevent="login">
<el-form-item label="管理员账号">
@@ -1064,7 +1064,7 @@ function buildChatQuery() {
show-password
/>
</el-form-item>
<el-button type="primary" :loading="loading" class="full-btn login-submit" @click="login">登录后台</el-button>
<el-button type="primary" :loading="loading" class="full-btn login-submit" @click="login">进入答疑后台</el-button>
</el-form>
</section>
</section>
@@ -1072,7 +1072,7 @@ function buildChatQuery() {
<main v-else class="admin-shell">
<aside class="sidebar">
<div class="sidebar-title">AI 知识库</div>
<div class="sidebar-title">大本营答疑</div>
<button :class="{ active: activeMenu === 'dashboard' }" @click="switchMenu('dashboard')">Dashboard</button>
<button :class="{ active: activeMenu === 'users' }" @click="switchMenu('users')">用户管理</button>
<button :class="{ active: activeMenu === 'knowledge' }" @click="switchMenu('knowledge')">知识库管理</button>
@@ -1591,7 +1591,7 @@ function buildChatQuery() {
:class="message.role"
>
<div class="message-meta">
<strong>{{ message.role === 'user' ? '用户' : 'AI 助手' }}</strong>
<strong>{{ message.role === 'user' ? '用户' : '大本营答疑助手' }}</strong>
<span>{{ message.createdAt }}</span>
</div>
<pre>{{ message.content }}</pre>

View File

@@ -3,7 +3,9 @@ import {
ElCollapse,
ElCollapseItem,
ElDatePicker,
ElDivider,
ElDrawer,
ElEmpty,
ElForm,
ElFormItem,
ElInput,
@@ -21,7 +23,9 @@ import "element-plus/theme-chalk/base.css";
import "element-plus/theme-chalk/el-button.css";
import "element-plus/theme-chalk/el-collapse.css";
import "element-plus/theme-chalk/el-date-picker.css";
import "element-plus/theme-chalk/el-divider.css";
import "element-plus/theme-chalk/el-drawer.css";
import "element-plus/theme-chalk/el-empty.css";
import "element-plus/theme-chalk/el-form.css";
import "element-plus/theme-chalk/el-input.css";
import "element-plus/theme-chalk/el-input-number.css";
@@ -48,7 +52,9 @@ app.config.globalProperties.$ELEMENT = { locale: zhCn };
ElCollapse,
ElCollapseItem,
ElDatePicker,
ElDivider,
ElDrawer,
ElEmpty,
ElForm,
ElFormItem,
ElInput,