Files
abot/admin/dashboard/templates/groups.html
2026-03-09 11:32:08 +08:00

62 lines
5.7 KiB
HTML

{% extends "base.html" %}
{% block title %}群组统计 - 机器人管理后台{% endblock %}
{% block content %}
<div class="page-shell stats-page">
<div class="page-hero">
<div class="page-hero-copy">
<div class="page-eyebrow">Groups Analytics</div>
<h1>群组统计</h1>
<p>聚焦群组活跃度、成功率与用户覆盖,快速识别最重要的互动场景。</p>
</div>
</div>
<el-row :gutter="16" class="overview-grid">
<el-col :span="8"><el-card class="overview-card overview-card--primary"><div class="overview-label">群组总数</div><div class="overview-value">{% raw %}{{ groupStats.length }}{% endraw %}</div><div class="overview-note">当前排行中展示的群组</div></el-card></el-col>
<el-col :span="8"><el-card class="overview-card"><div class="overview-label">总调用次数</div><div class="overview-value">{% raw %}{{ totalCalls }}{% endraw %}</div><div class="overview-note">统计周期内所有群组调用总和</div></el-card></el-col>
<el-col :span="8"><el-card class="overview-card overview-card--soft"><div class="overview-label">平均成功率</div><div class="overview-value">{% raw %}{{ averageSuccessRate }}{% endraw %}%</div><div class="overview-note">群组整体调用成功表现</div></el-card></el-col>
</el-row>
<el-card class="workspace-card" shadow="hover">
<div slot="header" class="workspace-header"><div><h3>群组活跃度排行</h3><p>查看调用量、插件覆盖与用户活跃情况。</p></div></div>
<el-table :data="groupStats" style="width: 100%">
<el-table-column label="群组信息" min-width="300">
<template slot-scope="scope"><div class="entity-cell"><div class="entity-badge">{% raw %}{{ scope.$index + 1 }}{% endraw %}</div><div class="entity-copy"><div class="entity-title">{% raw %}{{ scope.row.group_name || scope.row.group_id }}{% endraw %}</div><div class="entity-subtitle">{% raw %}{{ scope.row.group_id }}{% endraw %}</div></div></div></template>
</el-table-column>
<el-table-column prop="total_calls" label="调用次数" sortable width="120"></el-table-column>
<el-table-column prop="used_plugins" label="使用插件数" sortable width="120"></el-table-column>
<el-table-column prop="unique_users" label="唯一用户数" sortable width="120"></el-table-column>
<el-table-column prop="success_calls" label="成功次数" sortable width="120"></el-table-column>
<el-table-column prop="failed_calls" label="失败次数" sortable width="120"></el-table-column>
<el-table-column label="成功率" sortable width="120">
<template slot-scope="scope">{% raw %}{{ scope.row.total_calls ? (scope.row.success_calls / scope.row.total_calls * 100).toFixed(2) : '0.00' }}{% endraw %}%</template>
</el-table-column>
<el-table-column label="操作" width="120" align="center"><template slot-scope="scope"><el-button size="mini" type="primary" plain @click="viewGroupDetail(scope.row)">查看详情</el-button></template></el-table-column>
</el-table>
</el-card>
</div>
{% endblock %}
{% block scripts %}
<script>
new Vue({
el:'#app', mixins:[baseApp],
data(){ return { groupStats:[] } },
computed:{
totalCalls(){ return this.groupStats.reduce((s,i)=>s+(parseInt(i.total_calls)||0),0); },
averageSuccessRate(){ if(!this.groupStats.length) return '0.00'; const sum=this.groupStats.reduce((s,i)=>s+(i.total_calls?((i.success_calls/i.total_calls)*100):0),0); return (sum/this.groupStats.length).toFixed(2); }
},
mounted(){ this.currentView='4'; this.loadData(); },
methods:{
loadData(){ this.loadGroupStats(parseInt(this.timeRange)); },
loadGroupStats(days){ axios.get(`/api/group_stats?days=${days}&limit=20`).then(r=>{ if(r.data.success) this.groupStats=r.data.data||[]; }).catch(e=>{ console.error('加载群组统计数据出错:',e); this.$message.error('加载群组统计数据出错'); }); },
viewGroupDetail(){ this.$message.info('群组详情功能开发中'); }
}
});
</script>
<style>
.page-shell{display:flex;flex-direction:column;gap:16px}.page-hero{padding:24px 26px;border-radius:24px;background:linear-gradient(135deg, rgba(79,70,229,.10), rgba(59,130,246,.08), rgba(255,255,255,.9));border:1px solid rgba(148,163,184,.16);box-shadow:0 18px 40px rgba(15,23,42,.06)}.page-eyebrow{font-size:12px;text-transform:uppercase;letter-spacing:.08em;color:#6366f1;font-weight:700;margin-bottom:8px}.page-hero-copy h1{font-size:30px;line-height:1.1;margin-bottom:10px;color:#0f172a}.page-hero-copy p{color:#64748b;font-size:14px}.overview-grid .el-col{margin-bottom:16px}.overview-card{min-height:112px}.overview-card--primary{background:linear-gradient(180deg, rgba(79,70,229,.10), rgba(255,255,255,.94)) !important}.overview-card--soft{background:linear-gradient(180deg, rgba(59,130,246,.08), rgba(255,255,255,.94)) !important}.overview-label{font-size:13px;color:#64748b;margin-bottom:14px}.overview-value{font-size:30px;font-weight:700;color:#0f172a;margin-bottom:10px}.overview-note{font-size:12px;color:#94a3b8}.workspace-header{display:flex;align-items:center;justify-content:space-between;gap:16px}.workspace-header h3{font-size:18px;margin-bottom:4px}.workspace-header p{font-size:13px;color:#64748b}.entity-cell{display:flex;align-items:center;gap:12px}.entity-badge{width:30px;height:30px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:rgba(79,70,229,.10);color:#4f46e5;font-size:12px;font-weight:700;flex-shrink:0}.entity-title{font-size:14px;font-weight:600;color:#0f172a}.entity-subtitle{margin-top:4px;font-size:12px;color:#94a3b8}
</style>
{% endblock %}