工单统计

This commit is contained in:
liuye
2023-09-06 15:16:58 +08:00
parent e22bee323c
commit 390315d8fc
2 changed files with 508 additions and 2 deletions

View File

@@ -135,7 +135,7 @@ export default {
...mapState(['user']),
colConfigs() {
return [
{prop: "rank", label: '排名', align: "center", width: "100px"},
{prop: "rank", label: '排名', align: "center", width: "80px"},
{prop: "roomName", label: '群名称', align: "center"},
{prop: "ownerName", label: '群主', align: "center", width: "100px"},
{prop: "c", label: '触发数', align: "center", width: "100px"},
@@ -204,7 +204,7 @@ export default {
}
this.info.ranking.map((item, index)=> {
if(index < 6) {
if(index < 5) {
item.rank = index+1
this.tableData.push(item)
}