fix:修复log查看上下文时间计算错误

This commit is contained in:
zyh
2023-11-13 10:49:25 +08:00
parent 5c73670856
commit 948b14caf4

View File

@@ -125,7 +125,7 @@ export default {
methods: {
queryContext () {
this.loading = true
const twoHours = 2 * 60 * 60 * 1000 * 1000 // 纳秒
const twoHours = 2 * 60 * 60 * 1000 * 1000 * 1000// 纳秒
const bigNum = new BigNumber(this.rowData.timestamp)
const beforStart = bigNum.minus(twoHours) // 向前查两个小时