fix: 修复实体列表左侧filter弹窗因时间戳转换导致偶现noData的问题

This commit is contained in:
刘洪洪
2023-06-29 10:31:18 +08:00
parent 5ee3351ba7
commit 7f15139a38

View File

@@ -111,8 +111,8 @@ export default {
entityType: filter.type,
column: item.topColumn,
top: 10,
startTime: parseInt(this.timeFilter.startTime / 1000),
endTime: parseInt(this.timeFilter.endTime / 1000)
startTime: parseInt(this.timeFilter.startTime),
endTime: parseInt(this.timeFilter.endTime)
}
this.loading = true
this.popoverData = []
@@ -142,7 +142,6 @@ export default {
},
filter (name, topData) {
this.showTopDialog('', topData)
console.log('打印数据', name, topData)
this.$emit('filter', name, topData)
}
}