# Conflicts:
#	src/views/charts2/charts/networkOverview/NetworkOverviewLine.vue
This commit is contained in:
@changcode
2022-09-20 09:38:56 +08:00
16 changed files with 314 additions and 170 deletions

View File

@@ -73,7 +73,7 @@
</div> </div>
</template> </template>
<template v-else-if="index===2"> <template v-else-if="index===2">
<span class="route-menu" @click="jump(path,item,'',3)">{{item}}</span> <span class="route-menu" @click="jump(path,item,'',3)">{{$t(item)}}</span>
</template> </template>
<template v-else-if="index===1"> <template v-else-if="index===1">
<span class="route-menu" @click="jump(path,'','',2)" v-if="route.indexOf('detection') === -1">{{item}}</span> <span class="route-menu" @click="jump(path,'','',2)" v-if="route.indexOf('detection') === -1">{{item}}</span>
@@ -266,10 +266,16 @@ export default {
} }
}) })
const breadcrumb = breadcrumbMap.find(b => this.path === b.path) const breadcrumb = breadcrumbMap.find(b => this.path === b.path)
const thirdMenu = this.getUrlParam(this.curTabState.thirdMenu, '')
const fourthMenu = this.getUrlParam(this.curTabState.fourthMenu, '')
if (breadcrumb.columnValue) { if (breadcrumb.columnValue) {
return breadcrumb ? [breadcrumb.parentName, breadcrumb.name, this.$t(breadcrumb.columnName), breadcrumb.columnValue] : [] return breadcrumb ? [breadcrumb.parentName, breadcrumb.name, breadcrumb.columnName, breadcrumb.columnValue] : []
} else if (breadcrumb.columnName) { } else if (breadcrumb.columnName) {
return breadcrumb ? [breadcrumb.parentName, breadcrumb.name, this.$t(breadcrumb.columnName)] : [] return breadcrumb ? [breadcrumb.parentName, breadcrumb.name, breadcrumb.columnName] : []
} else if (fourthMenu) {
return breadcrumb ? [breadcrumb.parentName, breadcrumb.name, thirdMenu, fourthMenu] : []
} else if (thirdMenu) {
return breadcrumb ? [breadcrumb.parentName, breadcrumb.name, thirdMenu] : []
} else { } else {
return breadcrumb ? [breadcrumb.parentName, breadcrumb.name] : [] return breadcrumb ? [breadcrumb.parentName, breadcrumb.name] : []
} }
@@ -338,7 +344,8 @@ export default {
}, },
initDropdownList () { initDropdownList () {
const currentValue = document.getElementById('breadcrumbValue') ? document.getElementById('breadcrumbValue').innerText : '' const currentValue = document.getElementById('breadcrumbValue') ? document.getElementById('breadcrumbValue').innerText : ''
const columnName = this.$store.getters.getBreadcrumbColumnName // const columnName = this.$store.getters.getBreadcrumbColumnName
const columnName = this.getUrlParam(this.curTabState.thirdMenu, '')
let type = 'ip' let type = 'ip'
const tabObjGroup = networkOverviewTabList.filter(item => item.label == columnName) const tabObjGroup = networkOverviewTabList.filter(item => item.label == columnName)
if (tabObjGroup && tabObjGroup.length > 0) { if (tabObjGroup && tabObjGroup.length > 0) {
@@ -383,13 +390,17 @@ export default {
hideBreadcrumbPopover () { hideBreadcrumbPopover () {
this.showBackground = false this.showBackground = false
}, },
getUrlParam (param, defaultValue) {
return this.$route.query[param] ? this.$route.query[param] : defaultValue
},
changeValue (value) { changeValue (value) {
// 设置面包屑显示的内容及hover时的title // 设置面包屑显示的内容及hover时的title
document.getElementById('breadcrumbValue').innerText = value document.getElementById('breadcrumbValue').innerText = value
document.getElementById('breadcrumbButton').setAttribute('title', value) document.getElementById('breadcrumbButton').setAttribute('title', value)
document.getElementById(this.valueMenuId).setAttribute('title', value) document.getElementById(this.valueMenuId).setAttribute('title', value)
document.getElementById('breadcrumbButton').click() document.getElementById('breadcrumbButton').click()
const columnName = this.$store.getters.getBreadcrumbColumnName // const columnName = this.$store.getters.getBreadcrumbColumnName
const columnName = this.getUrlParam(this.curTabState.thirdMenu, '')
const tabObjGroup = networkOverviewTabList.filter(item => item.label == columnName) const tabObjGroup = networkOverviewTabList.filter(item => item.label == columnName)
if (tabObjGroup && tabObjGroup.length > 0) { if (tabObjGroup && tabObjGroup.length > 0) {
const curTab = tabObjGroup[0] const curTab = tabObjGroup[0]
@@ -403,12 +414,14 @@ export default {
queryCondition.push('common_server_port=' + valueGroup[1]) queryCondition.push('common_server_port=' + valueGroup[1])
} }
console.log(queryCondition.join(' AND ')) console.log(queryCondition.join(' AND '))
this.$store.commit('setQueryCondition', queryCondition.join(' AND ')) // this.$store.commit('setQueryCondition', queryCondition.join(' AND '))
this.changeUrlTabState(this.curTabState.queryCondition, queryCondition.join(' AND '))
} else { } else {
searchProps.forEach(item => { searchProps.forEach(item => {
queryCondition.push(item + "='" + value + "'") queryCondition.push(item + "='" + value + "'")
}) })
this.$store.commit('setQueryCondition', queryCondition.join(' OR ')) // this.$store.commit('setQueryCondition', queryCondition.join(' OR '))
this.changeUrlTabState(this.curTabState.queryCondition, queryCondition.join(' OR '))
} }
} }
} }
@@ -434,7 +447,7 @@ export default {
} }
}) })
}, },
changeTabState (param, value) { changeUrlTabState (param, value) {
const { query } = this.$route const { query } = this.$route
const newQuery = {} const newQuery = {}
newQuery[param] = value newQuery[param] = value
@@ -460,34 +473,48 @@ export default {
if (columnValue) { // 点击的为值 if (columnValue) { // 点击的为值
child.columnValue = columnValue child.columnValue = columnValue
child.columnName = columnName child.columnName = columnName
this.$store.commit('setBreadcrumbColumnValue', columnValue) // this.$store.commit('setBreadcrumbColumnValue', columnValue)
this.$store.commit('setBreadcrumbColumnName', columnName) // this.$store.commit('setBreadcrumbColumnName', columnName)
this.changeUrlTabState(this.curTabState.thirdMenu, columnName)
this.changeUrlTabState(this.curTabState.fourthMenu, columnValue)
const tabObjGroup = networkOverviewTabList.filter(item => item.label == columnName) const tabObjGroup = networkOverviewTabList.filter(item => item.label == columnName)
const type = tabObjGroup && tabObjGroup[0] ? tabObjGroup[0].prop : '' const type = tabObjGroup && tabObjGroup[0] ? tabObjGroup[0].prop : ''
this.$store.commit('setDimensionType', type) // this.$store.commit('setDimensionType', type)
this.$store.commit('setPanelName', columnValue) this.changeUrlTabState(this.curTabState.dimensionType, type)
// this.$store.commit('setPanelName', columnValue)
this.changeUrlTabState(this.curTabState.panelName, columnValue)
} else if (columnName) { // 点击的为列名 } else if (columnName) { // 点击的为列名
child.columnValue = '' child.columnValue = ''
child.columnName = columnName child.columnName = columnName
this.$store.commit('setBreadcrumbColumnValue', '') // this.$store.commit('setBreadcrumbColumnValue', '')
this.$store.commit('setBreadcrumbColumnName', columnName) // this.$store.commit('setBreadcrumbColumnName', columnName)
this.$store.commit('setPanelName', columnName) this.changeUrlTabState(this.curTabState.thirdMenu, columnName)
this.changeUrlTabState(this.curTabState.fourthMenu, '')
// this.$store.commit('setPanelName', columnName)
this.changeUrlTabState(this.curTabState.panelName, columnName)
const tabList = this.$store.getters.getNetworkOverviewTabList const tabList = this.$store.getters.getNetworkOverviewTabList
const curTab = tabList.filter(item => this.$t(item.label) === columnName)[0] const curTab = tabList.filter(item => item.label === columnName)[0]
this.changeTabState(this.curTabState.curTab, curTab) this.changeUrlTabState(this.curTabState.curTab, curTab)
this.$store.commit('setDimensionType', curTab ? curTab.prop : '') // this.$store.commit('setDimensionType', curTab ? curTab.prop : '')
this.$store.commit('setQueryCondition', '') this.changeUrlTabState(this.curTabState.dimensionType, curTab ? curTab.prop : '')
// this.$store.commit('setQueryCondition', '')
this.changeUrlTabState(this.curTabState.queryCondition, '')
this.$store.commit('setNetworkOverviewBeforeTab', null) this.$store.commit('setNetworkOverviewBeforeTab', null)
} else { } else {
child.columnName = '' child.columnName = ''
child.columnValue = '' child.columnValue = ''
this.$store.commit('setBreadcrumbColumnValue', '') // this.$store.commit('setBreadcrumbColumnValue', '')
this.$store.commit('setBreadcrumbColumnName', '') // this.$store.commit('setBreadcrumbColumnName', '')
this.$store.commit('setDimensionType', '') this.changeUrlTabState(this.curTabState.thirdMenu, '')
this.$store.commit('setPanelName', '') this.changeUrlTabState(this.curTabState.fourthMenu, '')
// this.$store.commit('setDimensionType', '')
this.changeUrlTabState(this.curTabState.dimensionType, '')
// this.$store.commit('setPanelName', '')
this.changeUrlTabState(this.curTabState.panelName, '')
// this.$store.commit('setBreadcrumbColumnValueList', []) // this.$store.commit('setBreadcrumbColumnValueList', [])
this.changeTabState(this.curTabState.curTab, null) this.changeUrlTabState(this.curTabState.curTab, null)
this.$store.commit('setQueryCondition', '') // this.$store.commit('setQueryCondition', '')
this.changeUrlTabState(this.curTabState.queryCondition, '')
this.$store.commit('setNetworkOverviewBeforeTab', null) this.$store.commit('setNetworkOverviewBeforeTab', null)
} }
} }

View File

@@ -37,13 +37,13 @@ const panel = {
breadcrumbColumnValue、 breadcrumbColumnValue、
queryCondition queryCondition
*/ */
panelName: '', // 网络概况的Panel的名称 // panelName: '', // 网络概况的Panel的名称
breadcrumbColumnName: '', // 点击tab里的value都会修改此值,为面包屑的菜单 // breadcrumbColumnName: '', // 点击tab里的value都会修改此值,为面包屑的菜单
dimensionType: '', // 维度 // dimensionType: '', // 维度
breadcrumbColumnValue: '', // 点击tab里的value都会修改此值,为面包屑的菜单 // breadcrumbColumnValue: '', // 点击tab里的value都会修改此值,为面包屑的菜单
// networkOverviewCurrentTab: null, // 只代表选中的tab有时会与面包屑中显示的值不同 // networkOverviewCurrentTab: null, // 只代表选中的tab有时会与面包屑中显示的值不同
networkOverviewBeforeTab: null, // 点击表格的值时使用记录点击当前tab表格的值之前点击的表格值所属的tab networkOverviewBeforeTab: null, // 点击表格的值时使用记录点击当前tab表格的值之前点击的表格值所属的tab
queryCondition: '', // 数据查询的条件 // queryCondition: '', // 数据查询的条件
networkOverviewTabList: [], // 存储tab列表的一些状态如是否选中 networkOverviewTabList: [], // 存储tab列表的一些状态如是否选中
tabOperationType: 0, // 操作类型:2-二级菜单3-三级菜单4-四级菜单5-切换tab6-切换metric7-操作Customize tabOperationType: 0, // 操作类型:2-二级菜单3-三级菜单4-四级菜单5-切换tab6-切换metric7-操作Customize
tabOperationBeforeType: 0, // 记录上次的操作类型 tabOperationBeforeType: 0, // 记录上次的操作类型
@@ -100,24 +100,24 @@ const panel = {
setCurrentMap (state, currentMap) { setCurrentMap (state, currentMap) {
state.currentMap = currentMap state.currentMap = currentMap
}, },
setPanelName (state, panelName) { // setPanelName (state, panelName) {
state.panelName = panelName // state.panelName = panelName
}, // },
setBreadcrumbColumnName (state, breadcrumbColumnName) { // setBreadcrumbColumnName (state, breadcrumbColumnName) {
state.breadcrumbColumnName = breadcrumbColumnName // state.breadcrumbColumnName = breadcrumbColumnName
}, // },
setDimensionType (state, dimensionType) { // setDimensionType (state, dimensionType) {
state.dimensionType = dimensionType // state.dimensionType = dimensionType
}, // },
setBreadcrumbColumnValue (state, breadcrumbColumnValue) { // setBreadcrumbColumnValue (state, breadcrumbColumnValue) {
state.breadcrumbColumnValue = breadcrumbColumnValue // state.breadcrumbColumnValue = breadcrumbColumnValue
}, // },
// setNetworkOverviewCurrentTab (state, networkOverviewCurrentTab) { // setNetworkOverviewCurrentTab (state, networkOverviewCurrentTab) {
// state.networkOverviewCurrentTab = networkOverviewCurrentTab // state.networkOverviewCurrentTab = networkOverviewCurrentTab
// }, // },
setQueryCondition (state, queryCondition) { // setQueryCondition (state, queryCondition) {
state.queryCondition = queryCondition // state.queryCondition = queryCondition
}, // },
setNetworkOverviewTabList (state, networkOverviewTabList) { setNetworkOverviewTabList (state, networkOverviewTabList) {
state.networkOverviewTabList = networkOverviewTabList state.networkOverviewTabList = networkOverviewTabList
}, },
@@ -183,24 +183,24 @@ const panel = {
getCurrentMap (state) { getCurrentMap (state) {
return state.currentMap return state.currentMap
}, },
getPanelName (state) { // getPanelName (state) {
return state.panelName // return state.panelName
}, // },
getBreadcrumbColumnName (state) { // getBreadcrumbColumnName (state) {
return state.breadcrumbColumnName // return state.breadcrumbColumnName
}, // },
getDimensionType (state) { // getDimensionType (state) {
return state.dimensionType // return state.dimensionType
}, // },
getBreadcrumbColumnValue (state) { // getBreadcrumbColumnValue (state) {
return state.breadcrumbColumnValue // return state.breadcrumbColumnValue
}, // },
// getNetworkOverviewCurrentTab (state) { // getNetworkOverviewCurrentTab (state) {
// return state.networkOverviewCurrentTab // return state.networkOverviewCurrentTab
// }, // },
getQueryCondition (state) { // getQueryCondition (state) {
return state.queryCondition // return state.queryCondition
}, // },
getNetworkOverviewTabList (state) { getNetworkOverviewTabList (state) {
return state.networkOverviewTabList return state.networkOverviewTabList
}, },

View File

@@ -244,7 +244,13 @@ export const curTabState = {
tableShowMore: 'tableShowMore', tableShowMore: 'tableShowMore',
tableSortColumn: 'tableSortColumn', tableSortColumn: 'tableSortColumn',
tableSortType: 'tableSortType', tableSortType: 'tableSortType',
tableSortTab: 'tableSortTab' tableSortTab: 'tableSortTab',
queryCondition: 'queryCondition',
dimensionType: 'dimensionType', // 纬度
panelName: 'panelName',
thirdMenu: 'thirdMenu',
fourthMenu: 'fourthMenu',
networkOverviewBeforeTab: 'networkOverviewBeforeTab'
} }
export const scoreUrl = [ export const scoreUrl = [

View File

@@ -40,7 +40,7 @@
<script> <script>
import { useRoute } from 'vue-router' import { useRoute } from 'vue-router'
import { ref } from 'vue' import { ref } from 'vue'
import { panelTypeAndRouteMapping, bytesColumnNameGroupForNpm, scoreUrl, customTableTitlesForAppPerformance, operationType } from '@/utils/constants' import { panelTypeAndRouteMapping, bytesColumnNameGroupForNpm, scoreUrl, customTableTitlesForAppPerformance, operationType, curTabState } from '@/utils/constants'
import { getPanelList, getChartList } from '@/utils/api' import { getPanelList, getChartList } from '@/utils/api'
import { getNowTime, getSecond } from '@/utils/date-util' import { getNowTime, getSecond } from '@/utils/date-util'
import { getTypeCategory } from '@/views/charts/charts/tools' import { getTypeCategory } from '@/views/charts/charts/tools'
@@ -63,7 +63,8 @@ export default {
panelLock: true, panelLock: true,
extraParams: {}, extraParams: {},
panelName: '', panelName: '',
score: null score: null,
curTabState: curTabState
} }
}, },
computed: { computed: {
@@ -83,14 +84,17 @@ export default {
} }
}, },
async mounted () { async mounted () {
this.panelName = this.$store.getters.getPanelName // this.panelName = this.$store.getters.getPanelName
this.panelName = this.$route.query.panelName ? this.$t(this.$route.query.panelName) : ''
const curOperationType = this.$store.getters.getTabOperationType const curOperationType = this.$store.getters.getTabOperationType
if (this.panelName && this.$route.path === '/panel/networkAppPerformance' && curOperationType !== operationType.thirdMenu) { if (this.panelName && this.$route.path === '/panel/networkAppPerformance' && curOperationType !== operationType.thirdMenu) {
const columnValue = this.$store.getters.getBreadcrumbColumnValue // const columnValue = this.$store.getters.getBreadcrumbColumnValue
const columnValue = this.getUrlParam(this.curTabState.fourthMenu, '')
const queryParams = { const queryParams = {
startTime: getSecond(this.timeFilter.startTime), startTime: getSecond(this.timeFilter.startTime),
endTime: getSecond(this.timeFilter.endTime), endTime: getSecond(this.timeFilter.endTime),
type: this.$store.getters.getDimensionType, // type: this.$store.getters.getDimensionType,
type: this.$route.query.dimensionType ? this.$route.query.dimensionType : '',
params: columnValue || '' params: columnValue || ''
} }
const requestGroup = [] const requestGroup = []
@@ -233,6 +237,9 @@ export default {
} else { } else {
this.timeFilter = JSON.parse(JSON.stringify(this.timeFilter)) this.timeFilter = JSON.parse(JSON.stringify(this.timeFilter))
} }
},
getUrlParam (param, defaultValue) {
return this.$route.query[param] ? this.$route.query[param] : defaultValue
} }
} }
} }

View File

@@ -338,27 +338,36 @@ export default {
searchProps.forEach(item => { searchProps.forEach(item => {
queryCondition.push(item + "='" + value + "'") queryCondition.push(item + "='" + value + "'")
}) })
this.$store.commit('setQueryCondition', queryCondition.join(' OR ')) // this.$store.commit('setQueryCondition', queryCondition.join(' OR '))
this.changeUrlTabState(this.curTabState.queryCondition, queryCondition.join(' OR '))
this.$store.getters.menuList.forEach(menu => { this.$store.getters.menuList.forEach(menu => {
if (this.$_.isEmpty(menu.children) && menu.route) { if (this.$_.isEmpty(menu.children) && menu.route) {
if (this.$route.path === menu.route) { if (this.$route.path === menu.route) {
menu.columnName = tabType menu.columnName = tabType
menu.columnValue = value menu.columnValue = value
this.$store.commit('setPanelName', value) // this.$store.commit('setPanelName', value)
this.$store.commit('setBreadcrumbColumnName', tabType) this.changeUrlTabState(this.curTabState.panelName, value)
this.$store.commit('setDimensionType', tabGroup[0] ? tabGroup[0].prop : '') // this.$store.commit('setBreadcrumbColumnName', tabType)
this.$store.commit('setBreadcrumbColumnValue', value) this.changeUrlTabState(this.curTabState.thirdMenu, tabType)
// this.$store.commit('setDimensionType', tabGroup[0] ? tabGroup[0].prop : '')
this.changeUrlTabState(this.curTabState.dimensionType, tabGroup[0] ? tabGroup[0].prop : '')
// this.$store.commit('setBreadcrumbColumnValue', value)
this.changeUrlTabState(this.curTabState.fourthMenu, value)
} }
} else if (!this.$_.isEmpty(menu.children)) { } else if (!this.$_.isEmpty(menu.children)) {
menu.children.forEach(child => { menu.children.forEach(child => {
if (this.$route.path === child.route) { if (this.$route.path === child.route) {
child.columnName = tabType child.columnName = tabType
child.columnValue = value child.columnValue = value
this.$store.commit('setPanelName', value) // this.$store.commit('setPanelName', value)
this.$store.commit('setBreadcrumbColumnName', tabType) this.changeUrlTabState(this.curTabState.panelName, value)
this.$store.commit('setDimensionType', tabGroup[0] ? tabGroup[0].prop : '') // this.$store.commit('setBreadcrumbColumnName', tabType)
this.$store.commit('setBreadcrumbColumnValue', value) this.changeUrlTabState(this.curTabState.thirdMenu, tabType)
// this.$store.commit('setDimensionType', tabGroup[0] ? tabGroup[0].prop : '')
this.changeUrlTabState(this.curTabState.dimensionType, tabGroup[0] ? tabGroup[0].prop : '')
// this.$store.commit('setBreadcrumbColumnValue', value)
this.changeUrlTabState(this.curTabState.fourthMenu, value)
} }
}) })
} }
@@ -377,7 +386,7 @@ export default {
const tabObjGroup = list.filter(item => item.checked) const tabObjGroup = list.filter(item => item.checked)
if (tabObjGroup && tabObjGroup.length > 0) { if (tabObjGroup && tabObjGroup.length > 0) {
const curTab = tabObjGroup[0] const curTab = tabObjGroup[0]
this.changeTabState(this.curTabState.curTab, curTab) this.changeUrlTabState(this.curTabState.curTab, curTab)
} }
this.$router.push({ this.$router.push({
query: { query: {
@@ -388,14 +397,13 @@ export default {
}) })
} }
}, },
changeTabState (param, value) { // tab改变
const query = { changeUrlTabState (param, value) {
...this.$route.query const { query } = this.$route
} const newQuery = {}
query[param] = value newQuery[param] = value
this.$router.push({ const newUrl = urlParamsHandler(window.location.href, query, newQuery)
query: query overwriteUrl(newUrl)
})
}, },
initChart (obj) { initChart (obj) {
let chart = this.myChart.find(m => m.name === obj.name && m.type === obj.type) let chart = this.myChart.find(m => m.name === obj.name && m.type === obj.type)

View File

@@ -201,6 +201,11 @@ export default {
if (this.queryCondition) { if (this.queryCondition) {
params.q = this.queryCondition params.q = this.queryCondition
} }
// const condition = this.$store.getters.getQueryCondition
const condition = this.$route.query.queryCondition ? this.$route.query.queryCondition : ''
if (condition) {
params.q = condition
}
this.toggleLoading(true) this.toggleLoading(true)
get(api.netWorkOverview.totalTrafficAnalysis, params).then((res) => { get(api.netWorkOverview.totalTrafficAnalysis, params).then((res) => {
if (res.code === 200) { if (res.code === 200) {

View File

@@ -365,20 +365,31 @@ export default {
}) })
// 针对network overview app list 点击标题触发下钻,相关内容处理 // 针对network overview app list 点击标题触发下钻,相关内容处理
const columnName = this.$store.getters.getBreadcrumbColumnName // const columnName = this.$store.getters.getBreadcrumbColumnName
if (columnName) { const thirdMenu = this.getUrlParam(this.curTabState.thirdMenu, '')
const fourthMenu = this.getUrlParam(this.curTabState.fourthMenu, '')
if (thirdMenu && fourthMenu) {
this.list.forEach(item => { this.list.forEach(item => {
if (item.label === columnName) { if (item.label === thirdMenu) {
item.checked = false item.checked = false
} }
}) })
this.$store.commit('setNetworkOverviewTabList', this.list) this.$store.commit('setNetworkOverviewTabList', this.list)
} else if (thirdMenu && !fourthMenu) {
this.list.forEach(item => {
if (item.label === thirdMenu) {
item.checked = true
}
})
this.$store.commit('setNetworkOverviewTabList', this.list)
} }
this.list.forEach(item => { this.list.forEach(item => {
if (item.checked) {
const tabDom = document.getElementById('tab-' + item.label) const tabDom = document.getElementById('tab-' + item.label)
if (tabDom) { if (tabDom) {
tabDom.style.display = '' tabDom.style.display = ''
} }
}
}) })
let curTab = this.getCurTab() let curTab = this.getCurTab()
@@ -391,16 +402,17 @@ export default {
this.showCustomizeTabs = true this.showCustomizeTabs = true
this.setShowNum(10) this.setShowNum(10)
} else if (curOperationType === operationType.thirdMenu) { // 点击的为第三级菜单 } else if (curOperationType === operationType.thirdMenu) { // 点击的为第三级菜单
const name = this.$store.getters.getBreadcrumbColumnName // const name = this.$store.getters.getBreadcrumbColumnName
const name = this.getUrlParam(this.curTabState.thirdMenu, '')
const networkTabList = [] const networkTabList = []
this.list.forEach(item => { this.list.forEach(item => {
if (this.$t(item.label) === name) { if (item.label === name) {
item.checked = true item.checked = true
} }
networkTabList.push(item) networkTabList.push(item)
}) })
this.$store.commit('setNetworkOverviewTabList', networkTabList) this.$store.commit('setNetworkOverviewTabList', networkTabList)
const breadcrumbColumnTab = this.list.find(item => this.$t(item.label) === name) const breadcrumbColumnTab = this.list.find(item => item.label === name)
this.changeUrlTabState(this.curTabState.curTab, breadcrumbColumnTab.prop) this.changeUrlTabState(this.curTabState.curTab, breadcrumbColumnTab.prop)
this.hideTabs(breadcrumbColumnTab) this.hideTabs(breadcrumbColumnTab)
@@ -423,6 +435,28 @@ export default {
this.showTab(curTab) this.showTab(curTab)
this.changeUrlTabState(this.curTabState.curTab, curTab.prop) this.changeUrlTabState(this.curTabState.curTab, curTab.prop)
} }
if (thirdMenu && fourthMenu) {
this.$nextTick(() => {
this.list.forEach(item => {
if (item.label === thirdMenu) {
item.checked = false
}
})
})
} else if (thirdMenu && !fourthMenu) {
this.list.forEach(item => {
if (item.label === thirdMenu) {
item.checked = true
this.$nextTick(() => {
this.hideTabs(item)
})
this.customTableTitles[0].label = item.label
}
})
this.activeTab = ''
}
this.list = Object.assign({}, this.list)
this.$store.commit('setNetworkOverviewTabList', this.list)
this.showCustomizeTabs = true this.showCustomizeTabs = true
} else if (curOperationType === operationType.changeMetric) { // 切换metric } else if (curOperationType === operationType.changeMetric) { // 切换metric
if (beforeOperationType === operationType.thirdMenu) { if (beforeOperationType === operationType.thirdMenu) {
@@ -485,7 +519,7 @@ export default {
} }
let cycleTotalList = [] let cycleTotalList = []
const condition = this.$store.getters.getQueryCondition const condition = this.getQueryCondition()
if (condition) { if (condition) {
queryParams.q = condition queryParams.q = condition
} }
@@ -866,7 +900,8 @@ export default {
limit: networkDefaultLimit, limit: networkDefaultLimit,
type: curTab.prop type: curTab.prop
} }
const condition = this.$store.getters.getQueryCondition // const condition = this.$store.getters.getQueryCondition
const condition = this.getQueryCondition()
if (condition) { if (condition) {
queryParams = { queryParams = {
orderBy: this.orderBy, orderBy: this.orderBy,
@@ -884,8 +919,10 @@ export default {
} }
const tabList = this.list.filter(item => item.checked === true) const tabList = this.list.filter(item => item.checked === true)
const defaultTab = tabList.length > 0 ? tabList[0] : {} const defaultTab = tabList.length > 0 ? tabList[0] : {}
const columnName = this.$store.getters.getBreadcrumbColumnName // const columnName = this.$store.getters.getBreadcrumbColumnName
const columnValue = this.$store.getters.getBreadcrumbColumnValue const columnName = this.getUrlParam(this.curTabState.thirdMenu, '')
// const columnValue = this.$store.getters.getBreadcrumbColumnValue
const columnValue = this.getUrlParam(this.curTabState.fourthMenu, '')
if (tabList.length === 1) { if (tabList.length === 1) {
defaultTab.disabled = true defaultTab.disabled = true
} else if (tabList.length > 1) { } else if (tabList.length > 1) {
@@ -926,11 +963,13 @@ export default {
}, },
// tab改变 // tab改变
changeUrlTabState (param, value) { changeUrlTabState (param, value) {
if (value != null && value != undefined) {
const { query } = this.$route const { query } = this.$route
const newQuery = {} const newQuery = {}
newQuery[param] = value newQuery[param] = value
const newUrl = urlParamsHandler(window.location.href, query, newQuery) const newUrl = urlParamsHandler(window.location.href, query, newQuery)
overwriteUrl(newUrl) overwriteUrl(newUrl)
}
}, },
// 激活tab修改的内容第一列的列名list中此tab为checked=true // 激活tab修改的内容第一列的列名list中此tab为checked=true
showTab (curTab) { showTab (curTab) {
@@ -950,8 +989,10 @@ export default {
const tabList = this.list.filter(item => item.checked === true) const tabList = this.list.filter(item => item.checked === true)
const defaultTab = tabList.length > 0 ? tabList[0] : {} const defaultTab = tabList.length > 0 ? tabList[0] : {}
// 当前操作之后只有1个tab被选中则这一个不允许取消选中 // 当前操作之后只有1个tab被选中则这一个不允许取消选中
const columnName = this.$store.getters.getBreadcrumbColumnName // const columnName = this.$store.getters.getBreadcrumbColumnName
const columnValue = this.$store.getters.getBreadcrumbColumnValue const columnName = this.getUrlParam(this.curTabState.thirdMenu, '')
// const columnValue = this.$store.getters.getBreadcrumbColumnValue
const columnValue = this.getUrlParam(this.curTabState.fourthMenu, '')
if (tabList.length === 1) { if (tabList.length === 1) {
defaultTab.disabled = true defaultTab.disabled = true
} else if (tabList.length > 1) { } else if (tabList.length > 1) {
@@ -977,7 +1018,8 @@ export default {
limit: networkDefaultLimit, limit: networkDefaultLimit,
type: tabList[0].prop type: tabList[0].prop
} }
const condition = this.$store.getters.getQueryCondition // const condition = this.$store.getters.getQueryCondition
const condition = this.getQueryCondition()
if (condition) { if (condition) {
queryParams = { queryParams = {
orderBy: this.orderBy, orderBy: this.orderBy,
@@ -1013,12 +1055,14 @@ export default {
queryCondition.push("common_l7_protocol='" + valueGroup[0] + "'") queryCondition.push("common_l7_protocol='" + valueGroup[0] + "'")
queryCondition.push('common_server_port=' + valueGroup[1]) queryCondition.push('common_server_port=' + valueGroup[1])
} }
this.$store.commit('setQueryCondition', queryCondition.join(' AND ')) // this.$store.commit('setQueryCondition', queryCondition.join(' AND '))
this.changeUrlTabState(this.curTabState.queryCondition, queryCondition.join(' AND '))
} else { } else {
searchProps.forEach(item => { searchProps.forEach(item => {
queryCondition.push(item + "='" + value + "'") queryCondition.push(item + "='" + value + "'")
}) })
this.$store.commit('setQueryCondition', queryCondition.join(' OR ')) // this.$store.commit('setQueryCondition', queryCondition.join(' OR '))
this.changeUrlTabState(this.curTabState.queryCondition, queryCondition.join(' OR '))
} }
}, },
getFirstCheckedTab () { getFirstCheckedTab () {
@@ -1049,20 +1093,28 @@ export default {
if (this.$route.path === menu.route) { if (this.$route.path === menu.route) {
menu.columnName = columnName menu.columnName = columnName
menu.columnValue = columnValue menu.columnValue = columnValue
this.$store.commit('setPanelName', columnValue) // this.$store.commit('setPanelName', columnValue)
this.$store.commit('setBreadcrumbColumnName', columnName) this.changeUrlTabState(this.curTabState.panelName, columnValue)
this.$store.commit('setDimensionType', clickTab ? clickTab.prop : '') // this.$store.commit('setBreadcrumbColumnName', columnName)
this.$store.commit('setBreadcrumbColumnValue', columnValue) this.changeUrlTabState(this.curTabState.thirdMenu, columnName)
// this.$store.commit('setDimensionType', clickTab ? clickTab.prop : '')
this.changeUrlTabState(this.curTabState.dimensionType, clickTab ? clickTab.prop : '')
// this.$store.commit('setBreadcrumbColumnValue', columnValue)
this.changeUrlTabState(this.curTabState.fourthMenu, columnValue)
} }
} else if (!this.$_.isEmpty(menu.children)) { } else if (!this.$_.isEmpty(menu.children)) {
menu.children.forEach(child => { menu.children.forEach(child => {
if (this.$route.path === child.route) { if (this.$route.path === child.route) {
child.columnName = columnName child.columnName = columnName
child.columnValue = columnValue child.columnValue = columnValue
this.$store.commit('setPanelName', columnValue) // this.$store.commit('setPanelName', columnValue)
this.$store.commit('setBreadcrumbColumnName', columnName) this.changeUrlTabState(this.curTabState.panelName, columnValue)
this.$store.commit('setDimensionType', clickTab ? clickTab.prop : '') // this.$store.commit('setBreadcrumbColumnName', columnName)
this.$store.commit('setBreadcrumbColumnValue', columnValue) this.changeUrlTabState(this.curTabState.thirdMenu, columnName)
// this.$store.commit('setDimensionType', clickTab ? clickTab.prop : '')
this.changeUrlTabState(this.curTabState.dimensionType, clickTab ? clickTab.prop : '')
// this.$store.commit('setBreadcrumbColumnValue', columnValue)
this.changeUrlTabState(this.curTabState.fourthMenu, columnValue)
} }
}) })
} }
@@ -1102,12 +1154,14 @@ export default {
queryCondition.push("common_l7_protocol='" + valueGroup[0] + "'") queryCondition.push("common_l7_protocol='" + valueGroup[0] + "'")
queryCondition.push('common_server_port=' + valueGroup[1]) queryCondition.push('common_server_port=' + valueGroup[1])
} }
this.$store.commit('setQueryCondition', queryCondition.join(' AND ')) // this.$store.commit('setQueryCondition', queryCondition.join(' AND '))
this.changeUrlTabState(this.curTabState.queryCondition, queryCondition.join(' AND '))
} else { } else {
searchProps.forEach(item => { searchProps.forEach(item => {
queryCondition.push(item + "='" + columnValue + "'") queryCondition.push(item + "='" + columnValue + "'")
}) })
this.$store.commit('setQueryCondition', queryCondition.join(' OR ')) // this.$store.commit('setQueryCondition', queryCondition.join(' OR '))
this.changeUrlTabState(this.curTabState.queryCondition, queryCondition.join(' OR '))
} }
}, },
metricChange () { metricChange () {
@@ -1186,7 +1240,8 @@ export default {
limit: networkDefaultLimit, limit: networkDefaultLimit,
type: curTab.prop type: curTab.prop
} }
const condition = this.$store.getters.getQueryCondition // const condition = this.$store.getters.getQueryCondition
const condition = this.getQueryCondition()
if (condition) { if (condition) {
queryParams = { queryParams = {
orderBy: this.orderBy, orderBy: this.orderBy,
@@ -1202,7 +1257,8 @@ export default {
} }
}, },
getCurUrl () { getCurUrl () {
const condition = this.$store.getters.getQueryCondition // const condition = this.$store.getters.getQueryCondition
const condition = this.getQueryCondition()
if (condition) { if (condition) {
return this.networkSearchUrl.drilldownCurUrl return this.networkSearchUrl.drilldownCurUrl
} else { } else {
@@ -1210,7 +1266,8 @@ export default {
} }
}, },
gerCycleUrl () { gerCycleUrl () {
const condition = this.$store.getters.getQueryCondition // const condition = this.$store.getters.getQueryCondition
const condition = this.getQueryCondition()
if (condition) { if (condition) {
return this.networkSearchUrl.drilldownCycleUrl return this.networkSearchUrl.drilldownCycleUrl
} else { } else {
@@ -1218,7 +1275,8 @@ export default {
} }
}, },
gerColumnUrl (tableColumn) { gerColumnUrl (tableColumn) {
const condition = this.$store.getters.getQueryCondition // const condition = this.$store.getters.getQueryCondition
const condition = this.getQueryCondition()
if (condition) { if (condition) {
return tableColumn.dillDownCycleDataUrl return tableColumn.dillDownCycleDataUrl
} else { } else {
@@ -1235,13 +1293,14 @@ export default {
}, */ }, */
handleQueryParams (extraParams) { handleQueryParams (extraParams) {
let queryType = '' let queryType = ''
const name = this.$store.getters.getBreadcrumbColumnName // const name = this.$store.getters.getBreadcrumbColumnName
const name = this.getUrlParam(this.curTabState.thirdMenu, '')
const curOperationType = this.$store.getters.getTabOperationType const curOperationType = this.$store.getters.getTabOperationType
if (curOperationType === operationType.fourthMenu) { // 点击的为第四级菜单 if (curOperationType === operationType.fourthMenu) { // 点击的为第四级菜单
const checkedTab = this.list.find(item => item.checked) const checkedTab = this.list.find(item => item.checked)
queryType = checkedTab ? checkedTab.prop : '' queryType = checkedTab ? checkedTab.prop : ''
} else if (curOperationType === operationType.thirdMenu) { // 点击的为第三级菜单 } else if (curOperationType === operationType.thirdMenu) { // 点击的为第三级菜单
const breadcrumbTab = this.list.find(item => this.$t(item.label) === name) const breadcrumbTab = this.list.find(item => item.label === name)
queryType = breadcrumbTab ? breadcrumbTab.prop : '' queryType = breadcrumbTab ? breadcrumbTab.prop : ''
} else if (curOperationType === operationType.changeTab) { // 切换tab } else if (curOperationType === operationType.changeTab) { // 切换tab
const curTab = this.getCurTab() const curTab = this.getCurTab()
@@ -1262,7 +1321,8 @@ export default {
orderBy: this.orderBy ? this.orderBy : 'bytesTotal', orderBy: this.orderBy ? this.orderBy : 'bytesTotal',
limit: networkDefaultLimit limit: networkDefaultLimit
} }
const condition = this.$store.getters.getQueryCondition // const condition = this.$store.getters.getQueryCondition
const condition = this.getQueryCondition()
if (condition) { if (condition) {
extraParams.q = condition extraParams.q = condition
} }
@@ -1294,6 +1354,12 @@ export default {
let curTab = this.$route.query.curTab?JSON.parse(this.$route.query.curTab):null let curTab = this.$route.query.curTab?JSON.parse(this.$route.query.curTab):null
return curTab return curTab
}, */ }, */
getQueryCondition () {
return this.$route.query.queryCondition ? this.$route.query.queryCondition : ''
},
getUrlParam (param, defaultValue) {
return this.$route.query[param] ? this.$route.query[param] : defaultValue
},
// 获取当前tab // 获取当前tab
getCurTab () { getCurTab () {
const curTabProp = this.$route.query.curTab ? this.$route.query.curTab : null const curTabProp = this.$route.query.curTab ? this.$route.query.curTab : null

View File

@@ -136,7 +136,7 @@ import unitConvert from '@/utils/unit-convert'
import { api } from '@/utils/api' import { api } from '@/utils/api'
import { getSecond } from '@/utils/date-util' import { getSecond } from '@/utils/date-util'
import { get } from '@/utils/http' import { get } from '@/utils/http'
import { getChainRatio, computeScore, changeCurTab } from '@/utils/tools' import { getChainRatio, computeScore, changeCurTab, urlParamsHandler, overwriteUrl } from '@/utils/tools'
import chartMixin from '@/views/charts2/chart-mixin' import chartMixin from '@/views/charts2/chart-mixin'
import ChartNoData from '@/views/charts/charts/ChartNoData' import ChartNoData from '@/views/charts/charts/ChartNoData'
export default { export default {
@@ -273,27 +273,36 @@ export default {
searchProps.forEach(item => { searchProps.forEach(item => {
queryCondition.push(item + "='" + value + "'") queryCondition.push(item + "='" + value + "'")
}) })
this.$store.commit('setQueryCondition', queryCondition.join(' OR ')) // this.$store.commit('setQueryCondition', queryCondition.join(' OR '))
this.changeUrlTabState(this.curTabState.queryCondition, queryCondition.join(' OR '))
this.$store.getters.menuList.forEach(menu => { this.$store.getters.menuList.forEach(menu => {
if (this.$_.isEmpty(menu.children) && menu.route) { if (this.$_.isEmpty(menu.children) && menu.route) {
if (this.$route.path === menu.route) { if (this.$route.path === menu.route) {
menu.columnName = tabType menu.columnName = tabType
menu.columnValue = value menu.columnValue = value
this.$store.commit('setPanelName', value) // this.$store.commit('setPanelName', value)
this.$store.commit('setBreadcrumbColumnName', tabType) this.changeUrlTabState(this.curTabState.panelName, value)
this.$store.commit('setDimensionType', tabGroup[0] ? tabGroup[0].prop : '') // this.$store.commit('setBreadcrumbColumnName', tabType)
this.$store.commit('setBreadcrumbColumnValue', value) this.changeUrlTabState(this.curTabState.thirdMenu, tabType)
// this.$store.commit('setDimensionType', tabGroup[0] ? tabGroup[0].prop : '')
this.changeUrlTabState(this.curTabState.dimensionType, tabGroup[0] ? tabGroup[0].prop : '')
// this.$store.commit('setBreadcrumbColumnValue', value)
this.changeUrlTabState(this.curTabState.fourthMenu, value)
} }
} else if (!this.$_.isEmpty(menu.children)) { } else if (!this.$_.isEmpty(menu.children)) {
menu.children.forEach(child => { menu.children.forEach(child => {
if (this.$route.path === child.route) { if (this.$route.path === child.route) {
child.columnName = tabType child.columnName = tabType
child.columnValue = value child.columnValue = value
this.$store.commit('setPanelName', value) // this.$store.commit('setPanelName', value)
this.$store.commit('setBreadcrumbColumnName', tabType) this.changeUrlTabState(this.curTabState.panelName, value)
this.$store.commit('setDimensionType', tabGroup[0] ? tabGroup[0].prop : '') // this.$store.commit('setBreadcrumbColumnName', tabType)
this.$store.commit('setBreadcrumbColumnValue', value) this.changeUrlTabState(this.curTabState.thirdMenu, tabType)
// this.$store.commit('setDimensionType', tabGroup[0] ? tabGroup[0].prop : '')
this.changeUrlTabState(this.curTabState.dimensionType, tabGroup[0] ? tabGroup[0].prop : '')
// this.$store.commit('setBreadcrumbColumnValue', value)
this.changeUrlTabState(this.curTabState.fourthMenu, value)
} }
}) })
} }
@@ -312,7 +321,7 @@ export default {
const tabObjGroup = list.filter(item => item.checked) const tabObjGroup = list.filter(item => item.checked)
if (tabObjGroup && tabObjGroup.length > 0) { if (tabObjGroup && tabObjGroup.length > 0) {
const curTab = tabObjGroup[0] const curTab = tabObjGroup[0]
this.changeTabState(this.curTabState.curTab, curTab) this.changeUrlTabState(this.curTabState.curTab, curTab)
} }
this.$router.push({ this.$router.push({
query: { query: {
@@ -322,14 +331,13 @@ export default {
} }
}) })
}, },
changeTabState (param, value) { // tab改变
const query = { changeUrlTabState (param, value) {
...this.$route.query const { query } = this.$route
} const newQuery = {}
query[param] = value newQuery[param] = value
this.$router.push({ const newUrl = urlParamsHandler(window.location.href, query, newQuery)
query: query overwriteUrl(newUrl)
})
} }
}, },
mounted () { mounted () {

View File

@@ -9,7 +9,7 @@ import { shallowRef } from 'vue'
import * as am4Core from '@amcharts/amcharts4/core' import * as am4Core from '@amcharts/amcharts4/core'
import * as am4Maps from '@amcharts/amcharts4/maps' import * as am4Maps from '@amcharts/amcharts4/maps'
import { computeScore, getGeoData } from '@/utils/tools' import { computeScore, getGeoData } from '@/utils/tools'
import { storageKey, unitTypes, countryNameIdMapping } from '@/utils/constants' import { storageKey, unitTypes, countryNameIdMapping, curTabState } from '@/utils/constants'
import { valueToRangeValue } from '@/utils/unit-convert' import { valueToRangeValue } from '@/utils/unit-convert'
import { getSecond } from '@/utils/date-util' import { getSecond } from '@/utils/date-util'
import { api, getData } from '@/utils/api' import { api, getData } from '@/utils/api'
@@ -25,7 +25,8 @@ export default {
worldImageSeries: null, worldImageSeries: null,
countryImageSeries: null, countryImageSeries: null,
// Server | Client // Server | Client
trafficDirection: 'Server' trafficDirection: 'Server',
curTabState: curTabState
} }
}, },
mixins: [chartMixin], mixins: [chartMixin],
@@ -56,6 +57,9 @@ export default {
// 渲染 // 渲染
this.loadAm4ChartMap(this.polygonSeries, this.worldImageSeries) this.loadAm4ChartMap(this.polygonSeries, this.worldImageSeries)
}, },
getUrlParam (param, defaultValue) {
return this.$route.query[param] ? this.$route.query[param] : defaultValue
},
loadAm4ChartMap (polygonSeries, imageSeries) { loadAm4ChartMap (polygonSeries, imageSeries) {
try { try {
// 清除数据 // 清除数据
@@ -71,8 +75,10 @@ export default {
const params = { const params = {
startTime: getSecond(this.timeFilter.startTime), startTime: getSecond(this.timeFilter.startTime),
endTime: getSecond(this.timeFilter.endTime), endTime: getSecond(this.timeFilter.endTime),
type: this.$store.getters.getDimensionType, // type: this.$store.getters.getDimensionType,
typeVal: this.$store.getters.getBreadcrumbColumnValue type: this.$route.query.dimensionType ? this.$route.query.dimensionType : '',
// typeVal: this.$store.getters.getBreadcrumbColumnValue
typeVal: this.getUrlParam(this.curTabState.fourthMenu, '')
} }
getData(api.npm.overview.map, params).then(res => { getData(api.npm.overview.map, params).then(res => {
const subParams = { const subParams = {

View File

@@ -47,13 +47,15 @@ export default {
}, },
methods: { methods: {
npmNetworkCycleQuery () { npmNetworkCycleQuery () {
const conditionStr = this.$route.query.queryCondition ? this.$route.query.queryCondition : ''
let condition = '' let condition = ''
if (this.$store.getters.getQueryCondition.indexOf('OR') > -1) { if (conditionStr.indexOf('OR') > -1) {
condition = this.$store.getters.getQueryCondition.split(/["|'](.*?)["|']/) condition = conditionStr.split(/["|'](.*?)["|']/)
} else { } else {
condition = this.$store.getters.getQueryCondition condition = conditionStr
} }
const type = this.$store.getters.getDimensionType // const type = this.$store.getters.getDimensionType
const type = this.$route.query.dimensionType ? this.$route.query.dimensionType : ''
const params = { const params = {
startTime: getSecond(this.timeFilter.startTime), startTime: getSecond(this.timeFilter.startTime),
endTime: getSecond(this.timeFilter.endTime), endTime: getSecond(this.timeFilter.endTime),
@@ -113,13 +115,15 @@ export default {
} }
}, },
npmNetworkLastCycleQuery () { npmNetworkLastCycleQuery () {
const conditionStr = this.$route.query.queryCondition ? this.$route.query.queryCondition : ''
let condition = '' let condition = ''
if (this.$store.getters.getQueryCondition.indexOf('OR') > -1) { if (conditionStr.indexOf('OR') > -1) {
condition = this.$store.getters.getQueryCondition.split(/["|'](.*?)["|']/) condition = conditionStr.split(/["|'](.*?)["|']/)
} else { } else {
condition = this.$store.getters.getQueryCondition condition = conditionStr
} }
const type = this.$store.getters.getDimensionType // const type = this.$store.getters.getDimensionType
const type = this.$route.query.dimensionType ? this.$route.query.dimensionType : ''
const params = { const params = {
startTime: getSecond(this.timeFilter.startTime), startTime: getSecond(this.timeFilter.startTime),
endTime: getSecond(this.timeFilter.endTime), endTime: getSecond(this.timeFilter.endTime),

View File

@@ -73,8 +73,11 @@ export default {
}, },
methods: { methods: {
recentEventsListData () { recentEventsListData () {
const condition = this.$store.getters.getQueryCondition.split(/["|'](.*?)["|']/) // const condition = this.$store.getters.getQueryCondition.split(/["|'](.*?)["|']/)
const type = this.$store.getters.getDimensionType const conditionStr = this.$route.query.queryCondition ? this.$route.query.queryCondition : ''
const condition = conditionStr.split(/["|'](.*?)["|']/)
// const type = this.$store.getters.getDimensionType
const type = this.$route.query.dimensionType ? this.$route.query.dimensionType : ''
let url = '' let url = ''
const params = { const params = {
startTime: getSecond(this.timeFilter.startTime), startTime: getSecond(this.timeFilter.startTime),

View File

@@ -79,7 +79,8 @@ export default {
if (this.chart.panelId === drillDownPanelTypeMapping.npmOverviewIp) { if (this.chart.panelId === drillDownPanelTypeMapping.npmOverviewIp) {
const self = this const self = this
// 当client或server的session数为0时对应tab置灰不可选默认高亮另一个不为0的tab // 当client或server的session数为0时对应tab置灰不可选默认高亮另一个不为0的tab
const condition = this.$store.getters.getQueryCondition.split(/["|'](.*?)["|']/) const conditionStr = this.$route.query.queryCondition ? this.$route.query.queryCondition : ''
const condition = conditionStr.split(/["|'](.*?)["|']/)
const params = { const params = {
startTime: getSecond(this.timeFilter.startTime), startTime: getSecond(this.timeFilter.startTime),
endTime: getSecond(this.timeFilter.endTime), endTime: getSecond(this.timeFilter.endTime),

View File

@@ -131,13 +131,15 @@ export default {
if (!val) { if (!val) {
val = this.metricFilter val = this.metricFilter
} }
const conditionStr = this.$route.query.queryCondition ? this.$route.query.queryCondition : ''
let condition = '' let condition = ''
if (this.$store.getters.getQueryCondition.indexOf('OR') > -1) { if (conditionStr.indexOf('OR') > -1) {
condition = this.$store.getters.getQueryCondition.split(/["|'](.*?)["|']/) condition = conditionStr.split(/["|'](.*?)["|']/)
} else { } else {
condition = this.$store.getters.getQueryCondition condition = conditionStr
} }
const type = this.$store.getters.getDimensionType // const type = this.$store.getters.getDimensionType
const type = this.$route.query.dimensionType ? this.$route.query.dimensionType : ''
if (this.chartData.id === 24) { if (this.chartData.id === 24) {
this.side = 'client' this.side = 'client'
} else if (this.chartData.id === 29) { } else if (this.chartData.id === 29) {

View File

@@ -59,7 +59,8 @@ export default {
}, },
methods: { methods: {
relatedSessionsData () { relatedSessionsData () {
const condition = this.$store.getters.getQueryCondition.split(/["|'](.*?)["|']/) const conditionStr = this.$route.query.queryCondition ? this.$route.query.queryCondition : ''
const condition = conditionStr.split(/["|'](.*?)["|']/)
const params = { const params = {
startTime: getSecond(this.timeFilter.startTime), startTime: getSecond(this.timeFilter.startTime),
endTime: getSecond(this.timeFilter.endTime), endTime: getSecond(this.timeFilter.endTime),