添加活跃时间

This commit is contained in:
liuwei
2026-01-19 17:26:14 +08:00
parent 6629479a66
commit 5f7deb4235

View File

@@ -287,6 +287,18 @@
</el-table-column>
<el-table-column prop="wxid" label="成员ID" width="220"></el-table-column>
<el-table-column prop="name" label="成员昵称"></el-table-column>
<el-table-column label="状态" width="100">
<template slot-scope="scope">
<el-tag size="mini" :type="scope.row.status === 1 ? 'success' : 'info'">
{% raw %}{{ scope.row.status === 1 ? '在群' : '已退群' }}{% endraw %}
</el-tag>
</template>
</el-table-column>
<el-table-column prop="latest_active_time" label="活跃时间" width="200">
<template slot-scope="scope">
{% raw %}{{ scope.row.latest_active_time || '-' }}{% endraw %}
</template>
</el-table-column>
</el-table>
<!-- 群成员分页 -->
@@ -747,6 +759,8 @@
? `${item.display_name}${item.nick_name}`
: item.display_name)
: (item.nick_name || item.wxid),
status: item.status,
latest_active_time: item.latest_active_time
}));
console.log('处理后的群成员列表:', this.groupMembersList); // 添加调试日志
} else {