CN-1263 network overview下钻查询条件变更

This commit is contained in:
hyx
2023-09-05 08:30:50 +08:00
parent baf157b253
commit 25d51d246c
7 changed files with 178 additions and 22 deletions

View File

@@ -339,6 +339,15 @@ export default {
})
this.urlChangeParams[this.curTabState.queryCondition] = queryCondition.join(' OR ')
const curTab = tabGroup[0]
if (curTab.lineQueryCondition) {
const lineQueryCondition = []
curTab.lineQueryCondition.forEach(item => {
lineQueryCondition.push(item.replaceAll('$param', value))
})
this.urlChangeParams[this.curTabState.lineQueryCondition] = lineQueryCondition.join(' OR ')
}
this.$store.getters.menuList.forEach(menu => {
if (this.$_.isEmpty(menu.children) && menu.route) {
if (this.$route.path === menu.route) {