|
@@ -395,11 +395,11 @@ export default {
|
|
|
this.loading = false
|
|
|
this.tableData = rows.map(item => {
|
|
|
return {
|
|
|
+ ...item.obj,
|
|
|
...item,
|
|
|
- ...item.obj
|
|
|
+ id: item.obj.id
|
|
|
}
|
|
|
})
|
|
|
- console.log(this.tableData, 111111)
|
|
|
this.total = records
|
|
|
})
|
|
|
}
|
|
@@ -434,6 +434,7 @@ export default {
|
|
|
this.fetchData(tab.name)
|
|
|
},
|
|
|
handlerOperate(type, row) {
|
|
|
+ console.log(row, 1111)
|
|
|
if (type === 'timeAxis') {
|
|
|
this.timeAxisClick(row)
|
|
|
return
|