操作日志展示账号及名称
This commit is contained in:
@@ -167,8 +167,11 @@
|
|||||||
loading: 'dataLoading'
|
loading: 'dataLoading'
|
||||||
}, res => {
|
}, res => {
|
||||||
if (res.ok) {
|
if (res.ok) {
|
||||||
this.total = res.data.total
|
this.total = res.data.total;
|
||||||
this.data = res.data.records
|
res.data.records.forEach(item => {
|
||||||
|
item.account = "(" + item.account + ")" + item.accountName;
|
||||||
|
});
|
||||||
|
this.data = res.data.records;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user