|
@@ -190,7 +190,10 @@ export default {
|
|
this.num = response.data;
|
|
this.num = response.data;
|
|
});
|
|
});
|
|
getrealtime(this.queryParams).then((response) => {
|
|
getrealtime(this.queryParams).then((response) => {
|
|
- this.logList = response.rows;
|
|
|
|
|
|
+ this.logList = response.rows.map(e => {
|
|
|
|
+ e.entrusted = e.entrusted == 0 ? '否' : '是'
|
|
|
|
+ return e;
|
|
|
|
+ });
|
|
this.total = response.total;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
this.loading = false;
|
|
});
|
|
});
|