|
@@ -213,6 +213,14 @@ export default {
|
|
|
this.alarmTotal = res.result.total
|
|
|
// this.pageInfo.total = res.result.total
|
|
|
this.tableData = res.result.records
|
|
|
+ // = res.result.records.forEach((item) => {
|
|
|
+ // item.alarmInfo = item.topic + "报警时间: " + item.createTime
|
|
|
+ // })
|
|
|
+ console.log("报警数据", this.tableData)
|
|
|
+ this.tableData.forEach((item) => {
|
|
|
+ item.topic = item.topic + " " + "报警时间: " + item.createTime
|
|
|
+ })
|
|
|
+ console.log("报警数据1111", this.tableData)
|
|
|
}
|
|
|
})
|
|
|
},
|