重构整个前端项目中的颜色变量,使用新的标准化颜色系统(--color-*-500)替换旧的--chart-*和--color-*变量。主要变更包括: 1. 替换所有组件中的颜色变量为新的标准命名格式 2. 更新图表颜色工具函数,移除旧的getChartColor方法 3. 调整暗色模式下的颜色变量值 4. 优化仪表盘统计卡片样式 5. 修复错误消息显示逻辑 6. 简化知识库类型选择卡片样式 同时更新了后端API错误处理逻辑,提供更详细的错误信息。移除不再使用的代码和样式。
700 lines
16 KiB
Vue
700 lines
16 KiB
Vue
<template>
|
||
<div class="dashboard-container">
|
||
<!-- 顶部状态条 -->
|
||
|
||
<!-- 现代化顶部统计栏 -->
|
||
<div class="modern-stats-header">
|
||
<StatusBar />
|
||
<StatsOverviewComponent :basic-stats="basicStats" />
|
||
</div>
|
||
|
||
<!-- Grid布局的主要内容区域 -->
|
||
<div class="dashboard-grid">
|
||
<!-- 调用统计模块 - 占据2x1网格 -->
|
||
<CallStatsComponent :loading="loading" ref="callStatsRef" />
|
||
|
||
<!-- 用户活跃度分析 - 占据1x1网格 -->
|
||
<div class="grid-item user-stats">
|
||
<UserStatsComponent
|
||
:user-stats="allStatsData?.users"
|
||
:loading="loading"
|
||
ref="userStatsRef"
|
||
/>
|
||
</div>
|
||
|
||
<!-- AI智能体分析 - 占据1x1网格 -->
|
||
<div class="grid-item agent-stats">
|
||
<AgentStatsComponent
|
||
:agent-stats="allStatsData?.agents"
|
||
:loading="loading"
|
||
ref="agentStatsRef"
|
||
/>
|
||
</div>
|
||
|
||
<!-- 工具调用监控 - 占据1x1网格 -->
|
||
<div class="grid-item tool-stats">
|
||
<ToolStatsComponent
|
||
:tool-stats="allStatsData?.tools"
|
||
:loading="loading"
|
||
ref="toolStatsRef"
|
||
/>
|
||
</div>
|
||
|
||
<!-- 知识库使用情况 - 占据1x1网格 -->
|
||
<div class="grid-item knowledge-stats">
|
||
<KnowledgeStatsComponent
|
||
:knowledge-stats="allStatsData?.knowledge"
|
||
:loading="loading"
|
||
ref="knowledgeStatsRef"
|
||
/>
|
||
</div>
|
||
|
||
<!-- 对话记录 - 占据1x1网格 -->
|
||
<div class="grid-item conversations">
|
||
<a-card class="conversations-section" title="对话记录" :loading="loading">
|
||
<template #extra>
|
||
<a-space>
|
||
<a-input
|
||
v-model:value="filters.user_id"
|
||
placeholder="用户ID"
|
||
size="small"
|
||
style="width: 120px"
|
||
@change="handleFilterChange"
|
||
/>
|
||
<a-select
|
||
v-model:value="filters.status"
|
||
placeholder="状态"
|
||
size="small"
|
||
style="width: 100px"
|
||
@change="handleFilterChange"
|
||
>
|
||
<a-select-option value="active">活跃</a-select-option>
|
||
<a-select-option value="deleted">已删除</a-select-option>
|
||
<a-select-option value="all">全部</a-select-option>
|
||
</a-select>
|
||
<a-button size="small" @click="loadConversations" :loading="loading">
|
||
刷新
|
||
</a-button>
|
||
<a-button size="small" @click="feedbackModal.show()">
|
||
反馈详情
|
||
</a-button>
|
||
</a-space>
|
||
</template>
|
||
|
||
<a-table
|
||
:columns="conversationColumns"
|
||
:data-source="conversations"
|
||
:loading="loading"
|
||
:pagination="conversationPagination"
|
||
@change="handleTableChange"
|
||
row-key="thread_id"
|
||
size="small"
|
||
>
|
||
<template #bodyCell="{ column, record }">
|
||
<template v-if="column.key === 'title'">
|
||
<a @click="handleViewDetail(record)" class="conversation-title" :class="{ 'loading': loadingDetail }">{{ record.title || '未命名对话' }}</a>
|
||
</template>
|
||
<template v-if="column.key === 'status'">
|
||
<a-tag :color="record.status === 'active' ? 'green' : 'red'" size="small">
|
||
{{ record.status === 'active' ? '活跃' : '已删除' }}
|
||
</a-tag>
|
||
</template>
|
||
<template v-if="column.key === 'updated_at'">
|
||
<span class="time-text">{{ formatDate(record.updated_at) }}</span>
|
||
</template>
|
||
<template v-if="column.key === 'actions'">
|
||
<a-button type="link" size="small" @click="handleViewDetail(record)" :loading="loadingDetail">
|
||
详情
|
||
</a-button>
|
||
</template>
|
||
</template>
|
||
</a-table>
|
||
</a-card>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 反馈模态框 -->
|
||
<FeedbackModalComponent ref="feedbackModal" />
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { ref, reactive, onMounted, onUnmounted } from 'vue'
|
||
import { message } from 'ant-design-vue'
|
||
import { dashboardApi } from '@/apis/dashboard_api'
|
||
import dayjs, { parseToShanghai } from '@/utils/time'
|
||
|
||
// 导入子组件
|
||
import StatusBar from '@/components/StatusBar.vue'
|
||
import UserStatsComponent from '@/components/dashboard/UserStatsComponent.vue'
|
||
import ToolStatsComponent from '@/components/dashboard/ToolStatsComponent.vue'
|
||
import KnowledgeStatsComponent from '@/components/dashboard/KnowledgeStatsComponent.vue'
|
||
import AgentStatsComponent from '@/components/dashboard/AgentStatsComponent.vue'
|
||
import CallStatsComponent from '@/components/dashboard/CallStatsComponent.vue'
|
||
import StatsOverviewComponent from '@/components/dashboard/StatsOverviewComponent.vue'
|
||
import FeedbackModalComponent from '@/components/dashboard/FeedbackModalComponent.vue'
|
||
|
||
// 组件引用
|
||
const feedbackModal = ref(null)
|
||
|
||
// 统计数据 - 使用新的响应式结构
|
||
const basicStats = ref({})
|
||
const allStatsData = ref({
|
||
users: null,
|
||
tools: null,
|
||
knowledge: null,
|
||
agents: null
|
||
})
|
||
|
||
// 过滤器
|
||
const filters = reactive({
|
||
user_id: '',
|
||
agent_id: '',
|
||
status: 'active',
|
||
})
|
||
|
||
// 对话列表
|
||
const conversations = ref([])
|
||
const loading = ref(false)
|
||
const loadingDetail = ref(false)
|
||
|
||
// 调用统计子组件引用
|
||
const callStatsRef = ref(null)
|
||
|
||
// 分页
|
||
const conversationPagination = reactive({
|
||
current: 1,
|
||
pageSize: 8,
|
||
total: 0,
|
||
showSizeChanger: false,
|
||
showQuickJumper: false,
|
||
showTotal: (total, range) => `${range[0]}-${range[1]} / ${total}`,
|
||
})
|
||
|
||
// 表格列定义
|
||
const conversationColumns = [
|
||
{
|
||
title: '对话标题',
|
||
dataIndex: 'title',
|
||
key: 'title',
|
||
ellipsis: true,
|
||
},
|
||
{
|
||
title: '用户',
|
||
dataIndex: 'user_id',
|
||
key: 'user_id',
|
||
width: '80px',
|
||
ellipsis: true,
|
||
},
|
||
{
|
||
title: '消息数',
|
||
dataIndex: 'message_count',
|
||
key: 'message_count',
|
||
width: '60px',
|
||
align: 'center',
|
||
},
|
||
{
|
||
title: '状态',
|
||
dataIndex: 'status',
|
||
key: 'status',
|
||
width: '70px',
|
||
align: 'center',
|
||
},
|
||
{
|
||
title: '更新时间',
|
||
dataIndex: 'updated_at',
|
||
key: 'updated_at',
|
||
width: '120px',
|
||
},
|
||
{
|
||
title: '操作',
|
||
key: 'actions',
|
||
width: '60px',
|
||
align: 'center',
|
||
},
|
||
]
|
||
|
||
// 子组件引用
|
||
const userStatsRef = ref(null)
|
||
const toolStatsRef = ref(null)
|
||
const knowledgeStatsRef = ref(null)
|
||
const agentStatsRef = ref(null)
|
||
|
||
// 加载统计数据 - 使用并行API调用
|
||
const loadAllStats = async () => {
|
||
loading.value = true
|
||
try {
|
||
// 使用并行API调用获取所有统计数据
|
||
const response = await dashboardApi.getAllStats()
|
||
|
||
// 更新基础统计数据
|
||
basicStats.value = response.basic
|
||
|
||
// 更新详细统计数据
|
||
allStatsData.value = {
|
||
users: response.users,
|
||
tools: response.tools,
|
||
knowledge: response.knowledge,
|
||
agents: response.agents
|
||
}
|
||
|
||
console.log('Dashboard 数据加载完成:', response)
|
||
message.success('数据加载成功')
|
||
} catch (error) {
|
||
console.error('加载统计数据失败:', error)
|
||
message.error('加载统计数据失败')
|
||
|
||
// 如果并行请求失败,尝试单独加载基础数据
|
||
try {
|
||
const basicResponse = await dashboardApi.getStats()
|
||
basicStats.value = basicResponse
|
||
message.warning('详细数据加载失败,仅显示基础统计')
|
||
} catch (basicError) {
|
||
console.error('加载基础统计数据也失败:', basicError)
|
||
message.error('无法加载任何统计数据')
|
||
}
|
||
} finally {
|
||
loading.value = false
|
||
}
|
||
}
|
||
|
||
// 保留原有的loadStats函数以兼容旧代码
|
||
const loadStats = loadAllStats
|
||
|
||
// 加载对话列表
|
||
const loadConversations = async () => {
|
||
try {
|
||
const params = {
|
||
user_id: filters.user_id || undefined,
|
||
agent_id: filters.agent_id || undefined,
|
||
status: filters.status,
|
||
limit: conversationPagination.pageSize,
|
||
offset: (conversationPagination.current - 1) * conversationPagination.pageSize,
|
||
}
|
||
|
||
const response = await dashboardApi.getConversations(params)
|
||
conversations.value = response
|
||
// Note: 由于后端没有返回总数,这里暂时设置为当前数据长度
|
||
conversationPagination.total = response.length
|
||
} catch (error) {
|
||
console.error('加载对话列表失败:', error)
|
||
message.error('加载对话列表失败')
|
||
}
|
||
}
|
||
|
||
// 日期格式化
|
||
const formatDate = (dateString) => {
|
||
if (!dateString) return '-'
|
||
const parsed = parseToShanghai(dateString)
|
||
if (!parsed) return '-'
|
||
const now = dayjs().tz('Asia/Shanghai')
|
||
const diffDays = now.startOf('day').diff(parsed.startOf('day'), 'day')
|
||
|
||
if (diffDays === 0) {
|
||
return parsed.format('HH:mm')
|
||
}
|
||
if (diffDays === 1) {
|
||
return '昨天'
|
||
}
|
||
if (diffDays < 7) {
|
||
return `${diffDays}天前`
|
||
}
|
||
return parsed.format('MM-DD')
|
||
}
|
||
|
||
// 查看对话详情
|
||
const handleViewDetail = async (record) => {
|
||
try {
|
||
loadingDetail.value = true
|
||
const detail = await dashboardApi.getConversationDetail(record.thread_id)
|
||
console.log(detail)
|
||
} catch (error) {
|
||
console.error('获取对话详情失败:', error)
|
||
message.error('获取对话详情失败')
|
||
} finally {
|
||
loadingDetail.value = false
|
||
}
|
||
}
|
||
|
||
// 处理过滤器变化
|
||
const handleFilterChange = () => {
|
||
conversationPagination.current = 1
|
||
loadConversations()
|
||
}
|
||
|
||
// 处理表格变化
|
||
const handleTableChange = (pag) => {
|
||
conversationPagination.current = pag.current
|
||
conversationPagination.pageSize = pag.pageSize
|
||
loadConversations()
|
||
}
|
||
|
||
|
||
// 清理函数 - 清理所有子组件的图表实例
|
||
const cleanupCharts = () => {
|
||
if (userStatsRef.value?.cleanup) userStatsRef.value.cleanup()
|
||
if (toolStatsRef.value?.cleanup) userStatsRef.value.cleanup()
|
||
if (knowledgeStatsRef.value?.cleanup) knowledgeStatsRef.value.cleanup()
|
||
if (agentStatsRef.value?.cleanup) agentStatsRef.value.cleanup()
|
||
if (callStatsRef.value?.cleanup) callStatsRef.value.cleanup()
|
||
}
|
||
|
||
// 初始化
|
||
onMounted(() => {
|
||
loadAllStats()
|
||
loadConversations()
|
||
})
|
||
|
||
// 组件卸载时清理图表
|
||
onUnmounted(() => {
|
||
cleanupCharts()
|
||
})
|
||
</script>
|
||
|
||
<style scoped lang="less">
|
||
|
||
.dashboard-container {
|
||
// padding: 0 24px 24px 24px;
|
||
background-color: var(--gray-25);
|
||
min-height: calc(100vh - 64px);
|
||
overflow-x: hidden;
|
||
}
|
||
|
||
// Dashboard 特有的网格布局
|
||
.dashboard-grid {
|
||
display: grid;
|
||
padding: 16px;
|
||
grid-template-columns: 1fr 1fr 1fr;
|
||
grid-template-rows: auto auto;
|
||
gap: 16px;
|
||
margin-bottom: 24px;
|
||
min-height: 600px;
|
||
|
||
.grid-item {
|
||
border-radius: 8px;
|
||
overflow: hidden;
|
||
display: flex;
|
||
flex-direction: column;
|
||
min-height: 300px;
|
||
background-color: transparent;
|
||
border: none;
|
||
transition: all 0.2s ease;
|
||
|
||
&:hover {
|
||
.conversations-section,
|
||
.call-stats-section {
|
||
border-color: var(--gray-200);
|
||
box-shadow: 0 1px 3px 0 var(--shadow-100);
|
||
}
|
||
}
|
||
|
||
// 大页面布局:第一行 2x1 + 1x1,第二行 3x1x1
|
||
&.call-stats {
|
||
grid-column: 1 / 3;
|
||
grid-row: 1 / 2;
|
||
min-height: 400px;
|
||
}
|
||
|
||
&.user-stats {
|
||
grid-column: 3 / 4;
|
||
grid-row: 1 / 2;
|
||
min-height: 400px;
|
||
}
|
||
|
||
&.agent-stats {
|
||
grid-column: 1 / 2;
|
||
grid-row: 2 / 3;
|
||
min-height: 350px;
|
||
}
|
||
|
||
&.tool-stats {
|
||
grid-column: 2 / 3;
|
||
grid-row: 2 / 3;
|
||
min-height: 350px;
|
||
}
|
||
|
||
&.knowledge-stats {
|
||
grid-column: 3 / 4;
|
||
grid-row: 2 / 3;
|
||
min-height: 350px;
|
||
}
|
||
|
||
&.conversations {
|
||
grid-column: 1 / 4;
|
||
grid-row: 3 / 4;
|
||
min-height: 300px;
|
||
}
|
||
}
|
||
}
|
||
|
||
// Dashboard 特有的卡片样式
|
||
.conversations-section,
|
||
.call-stats-section {
|
||
background-color: var(--gray-0);
|
||
border: 1px solid var(--gray-200);
|
||
border-radius: 12px;
|
||
transition: all 0.2s ease;
|
||
box-shadow: none;
|
||
|
||
&:hover {
|
||
background-color: var(--gray-25);
|
||
border-color: var(--gray-200);
|
||
box-shadow: 0 1px 3px 0 var(--shadow-100);
|
||
}
|
||
|
||
:deep(.ant-card-head) {
|
||
border-bottom: 1px solid var(--gray-200);
|
||
min-height: 56px;
|
||
padding: 0 20px;
|
||
background-color: var(--gray-0);
|
||
|
||
.ant-card-head-title {
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
color: var(--gray-1000);
|
||
}
|
||
}
|
||
|
||
:deep(.ant-card-body) {
|
||
padding: 16px 20px;
|
||
background-color: var(--gray-0);
|
||
}
|
||
|
||
:deep(.ant-card-extra) {
|
||
.ant-space {
|
||
gap: 8px;
|
||
}
|
||
}
|
||
}
|
||
|
||
// Dashboard 特有的占位符样式
|
||
.placeholder-content {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
height: 200px;
|
||
color: var(--gray-600);
|
||
|
||
.placeholder-icon {
|
||
width: 64px;
|
||
height: 64px;
|
||
background-color: var(--gray-100);
|
||
border-radius: 12px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
margin-bottom: 16px;
|
||
|
||
.icon {
|
||
width: 32px;
|
||
height: 32px;
|
||
color: var(--gray-500);
|
||
}
|
||
}
|
||
|
||
.placeholder-text {
|
||
font-size: 18px;
|
||
font-weight: 600;
|
||
color: var(--gray-800);
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
.placeholder-subtitle {
|
||
font-size: 14px;
|
||
color: var(--gray-600);
|
||
}
|
||
}
|
||
|
||
// Dashboard 特有的对话记录样式
|
||
.conversations-section {
|
||
.conversation-title {
|
||
color: var(--main-500);
|
||
text-decoration: none;
|
||
font-weight: 500;
|
||
font-size: 13px;
|
||
transition: color 0.2s ease;
|
||
|
||
&:hover {
|
||
color: var(--main-600);
|
||
text-decoration: underline;
|
||
}
|
||
}
|
||
|
||
.time-text {
|
||
color: var(--gray-600);
|
||
font-size: 12px;
|
||
}
|
||
}
|
||
|
||
// 调用统计模块样式
|
||
.call-stats-section {
|
||
.call-stats-container {
|
||
.call-summary {
|
||
display: grid;
|
||
grid-template-columns: repeat(4, 1fr);
|
||
gap: 16px;
|
||
margin-bottom: 24px;
|
||
|
||
.summary-card {
|
||
background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
|
||
border: 1px solid var(--gray-200);
|
||
border-radius: 8px;
|
||
padding: 12px;
|
||
text-align: center;
|
||
|
||
.summary-value {
|
||
font-size: 16px;
|
||
font-weight: 600;
|
||
color: var(--gray-800);
|
||
margin-bottom: 4px;
|
||
}
|
||
|
||
.summary-label {
|
||
font-size: 11px;
|
||
color: var(--gray-500);
|
||
font-weight: 500;
|
||
}
|
||
}
|
||
}
|
||
|
||
.chart-container {
|
||
.chart {
|
||
width: 100%;
|
||
height: 280px;
|
||
border-radius: 8px;
|
||
overflow: hidden;
|
||
}
|
||
}
|
||
}
|
||
|
||
:deep(.ant-card-extra) {
|
||
.ant-space {
|
||
gap: 8px;
|
||
}
|
||
}
|
||
}
|
||
|
||
// Dashboard 特有的响应式设计
|
||
@media (max-width: 1200px) {
|
||
.dashboard-grid {
|
||
grid-template-columns: 1fr 1fr;
|
||
grid-template-rows: auto auto auto;
|
||
gap: 16px;
|
||
|
||
.grid-item {
|
||
// 小页面布局:第一行 2x1,第二行和第三行各是 2x1x1
|
||
&.call-stats {
|
||
grid-column: 1 / 3;
|
||
grid-row: 1 / 2;
|
||
min-height: 350px;
|
||
}
|
||
|
||
&.user-stats {
|
||
grid-column: 1 / 2;
|
||
grid-row: 2 / 3;
|
||
min-height: 300px;
|
||
}
|
||
|
||
&.agent-stats {
|
||
grid-column: 2 / 3;
|
||
grid-row: 2 / 3;
|
||
min-height: 300px;
|
||
}
|
||
|
||
&.tool-stats {
|
||
grid-column: 1 / 2;
|
||
grid-row: 3 / 4;
|
||
min-height: 300px;
|
||
}
|
||
|
||
&.knowledge-stats {
|
||
grid-column: 2 / 3;
|
||
grid-row: 3 / 4;
|
||
min-height: 300px;
|
||
}
|
||
|
||
&.conversations {
|
||
grid-column: 1 / 3;
|
||
grid-row: 4 / 5;
|
||
min-height: 300px;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.dashboard-container {
|
||
padding: 16px;
|
||
}
|
||
|
||
.dashboard-grid {
|
||
grid-template-columns: 1fr;
|
||
gap: 12px;
|
||
|
||
.grid-item {
|
||
&.call-stats,
|
||
&.agent-stats,
|
||
&.user-stats,
|
||
&.tool-stats,
|
||
&.knowledge-stats,
|
||
&.conversations {
|
||
grid-column: 1 / 2;
|
||
grid-row: auto;
|
||
min-height: 300px;
|
||
}
|
||
}
|
||
}
|
||
|
||
.call-stats-section {
|
||
.call-stats-container {
|
||
.call-summary {
|
||
grid-template-columns: repeat(2, 1fr);
|
||
gap: 12px;
|
||
|
||
.summary-card {
|
||
padding: 12px;
|
||
|
||
.summary-value {
|
||
font-size: 18px;
|
||
}
|
||
|
||
.summary-label {
|
||
font-size: 11px;
|
||
}
|
||
}
|
||
}
|
||
|
||
.chart-container {
|
||
.chart {
|
||
height: 200px;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
.placeholder-content {
|
||
height: 150px;
|
||
|
||
.placeholder-icon {
|
||
width: 48px;
|
||
height: 48px;
|
||
margin-bottom: 12px;
|
||
|
||
.icon {
|
||
width: 24px;
|
||
height: 24px;
|
||
}
|
||
}
|
||
|
||
.placeholder-text {
|
||
font-size: 16px;
|
||
}
|
||
|
||
.placeholder-subtitle {
|
||
font-size: 12px;
|
||
}
|
||
}
|
||
}
|
||
|
||
</style> |