操作日志展示账号及名称

This commit is contained in:
宋伟佳
2022-03-11 15:06:33 +08:00
parent 2d26ed101f
commit a2c0aea60c
@@ -167,8 +167,11 @@
loading: 'dataLoading'
}, res => {
if (res.ok) {
this.total = res.data.total
this.data = res.data.records
this.total = res.data.total;
res.data.records.forEach(item => {
item.account = "(" + item.account + ")" + item.accountName;
});
this.data = res.data.records;
}
})
},