This commit is contained in:
yanran200730
2023-04-27 16:16:21 +08:00
parent b098a4e294
commit 8ae50f3852

View File

@@ -287,15 +287,16 @@
</ai-echart-v2> </ai-echart-v2>
</div> </div>
</AiDvPanel> </AiDvPanel>
<AiDvPanel class="bottom" style="width: 655px" border="border6" title="群动态多维度排行"> <AiDvPanel class="bottom" style="width: 100%" border="border6" title="群动态多维度排行">
<ai-table <ai-table
width="100%" width="100%"
max-height="320px"
height="310px" height="310px"
:tableData="tableList" :tableData="tableList"
:col-configs="colConfigs" :col-configs="colConfigs"
:isShowPagination="false" :isShowPagination="false"
@getList="() => {}"> @getList="() => {}">
<el-table-column slot="index" label="排名" align="center" width="60"> <el-table-column slot="index" label="排名" align="center" width="38">
<template slot-scope="{ $index }"> <template slot-scope="{ $index }">
<div class="table-index" :class="[$index < 3 ? 'table-index__active' : '']"> <div class="table-index" :class="[$index < 3 ? 'table-index__active' : '']">
<span>{{ $index + 1 }}</span> <span>{{ $index + 1 }}</span>
@@ -616,12 +617,12 @@
colConfigs: [ colConfigs: [
{ slot: 'index' }, { slot: 'index' },
{ prop: 'ownerName', label: '姓名', align: 'left', width: 56 }, { prop: 'ownerName', label: '姓名', align: 'left', width: 56 },
{ prop: 'deptName', label: '单位', align: 'left', width: 90 }, { prop: 'deptName', label: '单位', align: 'left', width: 82 },
{ prop: 'groupCount', label: '群数量', align: 'center', width: 56 }, { prop: 'groupCount', label: '群数量', align: 'center', width: 56 },
{ prop: 'groupMemberCount', label: '群人员', align: 'center', width: 56 }, { prop: 'groupMemberCount', label: '群人员', align: 'center', width: 56 },
{ prop: 'newMemberCount', label: '新增群人员', align: 'center' }, { prop: 'newMemberCount', label: '新增群人员', align: 'center', width: 80 },
{ prop: 'hasMsgGroupCount', label: '有消息的群', align: 'center' }, { prop: 'hasMsgGroupCount', label: '有消息的群', align: 'center', width: 80 },
{ prop: 'msgCount', label: '群聊人数', align: 'center' }, { prop: 'msgCount', label: '群聊人数', align: 'center', width: 68 },
{ prop: 'hasMsgMemberCount', label: '群消息总数', align: 'center' } { prop: 'hasMsgMemberCount', label: '群消息总数', align: 'center' }
] ]
} }
@@ -1169,7 +1170,9 @@
.right-right { .right-right {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
flex: 1; // flex: 1;
width: 600px;
overflow: hidden;
.bottom { .bottom {
padding-top: 16px; padding-top: 16px;