This commit is contained in:
yanran200730
2022-07-26 17:42:19 +08:00
parent b2002d5989
commit 8d727d4f39

View File

@@ -364,7 +364,12 @@
}
}).then(res => {
if (res.code === 0) {
this.tableData2 = res.data.executedList.records
this.tableData2 = res.data.executedList.records.map(v => {
return {
...v,
groupName: v.groupName || '未命名群聊'
}
})
this.total2 = res.data.executedList.total
this.groupInfo = res.data
}