NEZ-3471 fix: 复制浏览器url访问,查询条件未正确设置

This commit is contained in:
zyh
2024-05-15 17:41:02 +08:00
parent 8ab26d83bd
commit 2a9545d7af

View File

@@ -3992,7 +3992,11 @@ export default {
// 过滤掉state为0的元素
this.expressions.forEach((item, index) => {
if (item != '' && this.promqlKeys[index].state && item) {
requestArr.push(this.$get('/logs/loki/api/v1/query_range?format=1&query=' + encodeURIComponent(item) + '&start=' + this.$stringTimeParseToUnix(bus.formateTimeToTime(this.filterTime[0])) + '&end=' + this.$stringTimeParseToUnix(bus.formateTimeToTime(this.filterTime[1])) + '&limit=' + limit))
let query = '/logs/loki/api/v1/query_range?format=1&query=' + encodeURIComponent(item) + '&start=' + this.$stringTimeParseToUnix(bus.formateTimeToTime(this.filterTime[0])) + '&end=' + this.$stringTimeParseToUnix(bus.formateTimeToTime(this.filterTime[1])) + '&limit=' + limit
if (this.promqlKeys[index].step) {
query += '&step=' + this.promqlKeys[index].step + 's'
}
requestArr.push(this.$get(query))
realArr.push(index)
}
})
@@ -4465,7 +4469,7 @@ export default {
const nowTimeType = data.nowTimeType
this.filterTime = data.searchTime
if (nowTimeType && nowTimeType.type) {
this.setSearchTime('filterTime')
this.setSearchTime('filterTime', nowTimeType)
}
if (nowTimeType) {
nowTimeType.start_time = this.filterTime[0]