CN-710 下钻table配置化

This commit is contained in:
hyx
2022-09-23 19:01:30 +08:00
parent af2bf4c96a
commit e1d75bdeff
8 changed files with 795 additions and 358 deletions

View File

@@ -183,7 +183,7 @@ import { get, put } from '@/utils/http'
import { entityType, storageKey, networkOverviewTabList, operationType, networkOverviewSearchUrl, curTabState } from '@/utils/constants' import { entityType, storageKey, networkOverviewTabList, operationType, networkOverviewSearchUrl, curTabState } from '@/utils/constants'
import { api } from '@/utils/api' import { api } from '@/utils/api'
import { ref } from 'vue' import { ref } from 'vue'
import { urlParamsHandler, overwriteUrl } from '@/utils/tools' import { urlParamsHandler, overwriteUrl, getUserDrilldownTableConfig } from '@/utils/tools'
import { getNowTime, getSecond } from '@/utils/date-util' import { getNowTime, getSecond } from '@/utils/date-util'
export default { export default {
@@ -390,10 +390,10 @@ export default {
hideBreadcrumbPopover () { hideBreadcrumbPopover () {
this.showBackground = false this.showBackground = false
}, },
getUrlParam (param, defaultValue,isNumber) { getUrlParam (param, defaultValue, isNumber) {
if(isNumber){ if (isNumber) {
return this.$route.query[param] ? Number(this.$route.query[param]) : defaultValue return this.$route.query[param] ? Number(this.$route.query[param]) : defaultValue
}else { } else {
return this.$route.query[param] ? this.$route.query[param] : defaultValue return this.$route.query[param] ? this.$route.query[param] : defaultValue
} }
}, },
@@ -461,12 +461,12 @@ export default {
jump (route, columnName, columnValue, opeType) { jump (route, columnName, columnValue, opeType) {
this.showMenu = false this.showMenu = false
if (opeType) { if (opeType) {
//this.$store.commit('setTabOperationBeforeType', this.$store.getters.getTabOperationType) // this.$store.commit('setTabOperationBeforeType', this.$store.getters.getTabOperationType)
//this.$store.commit('setTabOperationType', opeType) // this.$store.commit('setTabOperationType', opeType)
this.changeUrlTabState(this.curTabState.tabOperationBeforeType, this.getUrlParam(this.curTabState.tabOperationType, '',true)) this.changeUrlTabState(this.curTabState.tabOperationBeforeType, this.getUrlParam(this.curTabState.tabOperationType, '', true))
this.changeUrlTabState(this.curTabState.tabOperationType, opeType) this.changeUrlTabState(this.curTabState.tabOperationType, opeType)
} else { } else {
//this.$store.commit('setTabOperationType', operationType.mainMenu) // this.$store.commit('setTabOperationType', operationType.mainMenu)
this.changeUrlTabState(this.curTabState.tabOperationType, operationType.mainMenu) this.changeUrlTabState(this.curTabState.tabOperationType, operationType.mainMenu)
} }
if (!columnName) { // 点击第二级菜单 if (!columnName) { // 点击第二级菜单
@@ -499,20 +499,25 @@ export default {
this.changeUrlTabState(this.curTabState.fourthMenu, '') this.changeUrlTabState(this.curTabState.fourthMenu, '')
// this.$store.commit('setPanelName', columnName) // this.$store.commit('setPanelName', columnName)
this.changeUrlTabState(this.curTabState.panelName, columnName) this.changeUrlTabState(this.curTabState.panelName, columnName)
const tabList = this.$store.getters.getNetworkOverviewTabList const tableType = this.$route.params ? this.$route.params.typeName : 'networkOverview'
const metric = this.getUrlParam(this.curTabState.tableMetric, 'Bits/s')
// const tabList = this.$store.getters.getNetworkOverviewTabList
const tabList = getUserDrilldownTableConfig(tableType, metric)
const curTab = tabList.filter(item => item.label === columnName)[0] const curTab = tabList.filter(item => item.label === columnName)[0]
this.changeUrlTabState(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.changeUrlTabState(this.curTabState.dimensionType, curTab ? curTab.prop : '') this.changeUrlTabState(this.curTabState.dimensionType, curTab ? curTab.prop : '')
// this.$store.commit('setQueryCondition', '') // this.$store.commit('setQueryCondition', '')
this.changeUrlTabState(this.curTabState.queryCondition, '') this.changeUrlTabState(this.curTabState.queryCondition, '')
//this.$store.commit('setNetworkOverviewBeforeTab', null) // this.$store.commit('setNetworkOverviewBeforeTab', null)
this.changeUrlTabState(this.curTabState.networkOverviewBeforeTab, '') this.changeUrlTabState(this.curTabState.networkOverviewBeforeTab, '')
} 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.changeUrlTabState(this.curTabState.thirdPanel, '')
this.changeUrlTabState(this.curTabState.fourthPanel, '')
this.changeUrlTabState(this.curTabState.thirdMenu, '') this.changeUrlTabState(this.curTabState.thirdMenu, '')
this.changeUrlTabState(this.curTabState.fourthMenu, '') this.changeUrlTabState(this.curTabState.fourthMenu, '')
// this.$store.commit('setDimensionType', '') // this.$store.commit('setDimensionType', '')
@@ -523,7 +528,7 @@ export default {
this.changeUrlTabState(this.curTabState.curTab, null) this.changeUrlTabState(this.curTabState.curTab, null)
// this.$store.commit('setQueryCondition', '') // this.$store.commit('setQueryCondition', '')
this.changeUrlTabState(this.curTabState.queryCondition, '') this.changeUrlTabState(this.curTabState.queryCondition, '')
//this.$store.commit('setNetworkOverviewBeforeTab', null) // this.$store.commit('setNetworkOverviewBeforeTab', null)
this.changeUrlTabState(this.curTabState.networkOverviewBeforeTab, '') this.changeUrlTabState(this.curTabState.networkOverviewBeforeTab, '')
} }
} }

View File

@@ -42,11 +42,11 @@ const panel = {
// 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, // 记录上次的操作类型
npmThirdLevelMenuScore: null, // npm overview 第三级菜单的panel分数 npmThirdLevelMenuScore: null, // npm overview 第三级菜单的panel分数
npmLocationCountry: '', // npm location的查询条件--国家 npmLocationCountry: '', // npm location的查询条件--国家
npmLocationSide: 'server' // npm location的查询条件--方向 npmLocationSide: 'server' // npm location的查询条件--方向
@@ -121,15 +121,15 @@ const panel = {
setNetworkOverviewTabList (state, networkOverviewTabList) { setNetworkOverviewTabList (state, networkOverviewTabList) {
state.networkOverviewTabList = networkOverviewTabList state.networkOverviewTabList = networkOverviewTabList
}, },
//setTabOperationType (state, tabOperationType) { // setTabOperationType (state, tabOperationType) {
//state.tabOperationType = tabOperationType // state.tabOperationType = tabOperationType
//}, // },
//setNetworkOverviewBeforeTab (state, networkOverviewBeforeTab) { // setNetworkOverviewBeforeTab (state, networkOverviewBeforeTab) {
//state.networkOverviewBeforeTab = networkOverviewBeforeTab // state.networkOverviewBeforeTab = networkOverviewBeforeTab
//}, // },
//setTabOperationBeforeType (state, tabOperationBeforeType) { // setTabOperationBeforeType (state, tabOperationBeforeType) {
//state.tabOperationBeforeType = tabOperationBeforeType // state.tabOperationBeforeType = tabOperationBeforeType
//}, // },
setNpmLocationCountry (state, country) { setNpmLocationCountry (state, country) {
state.npmLocationCountry = country state.npmLocationCountry = country
}, },
@@ -204,15 +204,15 @@ const panel = {
getNetworkOverviewTabList (state) { getNetworkOverviewTabList (state) {
return state.networkOverviewTabList return state.networkOverviewTabList
}, },
//getTabOperationType (state) { // getTabOperationType (state) {
//return state.tabOperationType // return state.tabOperationType
//}, // },
//getNetworkOverviewBeforeTab (state) { // getNetworkOverviewBeforeTab (state) {
//return state.networkOverviewBeforeTab // return state.networkOverviewBeforeTab
//}, // },
//getTabOperationBeforeType (state) { // getTabOperationBeforeType (state) {
//return state.tabOperationBeforeType // return state.tabOperationBeforeType
//}, // },
getNpmLocationCountry (state) { getNpmLocationCountry (state) {
return state.npmLocationCountry return state.npmLocationCountry
}, },

View File

@@ -31,6 +31,7 @@ export const storageKey = {
echartLabelFontSize: 'echartLabelFontSize', echartLabelFontSize: 'echartLabelFontSize',
tokenExpireCurrentPath: 'token-expire-current-path', tokenExpireCurrentPath: 'token-expire-current-path',
drillDownTableConfig: 'cn-drill-down-table-config', drillDownTableConfig: 'cn-drill-down-table-config',
userCustomizationConfig: 'userCustomizationConfig'
linkInfo: 'cn-link-info' linkInfo: 'cn-link-info'
} }
export const largeCountryList = ['CN', 'US', 'RU', 'AU', 'CA', 'KZ', 'IN', 'BR'] export const largeCountryList = ['CN', 'US', 'RU', 'AU', 'CA', 'KZ', 'IN', 'BR']
@@ -252,9 +253,11 @@ export const curTabState = {
panelName: 'panelName', panelName: 'panelName',
thirdMenu: 'thirdMenu', thirdMenu: 'thirdMenu',
fourthMenu: 'fourthMenu', fourthMenu: 'fourthMenu',
thirdPanel: 'thirdPanel',
fourthPanel: 'fourthPanel',
networkOverviewBeforeTab: 'networkOverviewBeforeTab', networkOverviewBeforeTab: 'networkOverviewBeforeTab',
tabOperationType:'tabOperationType', tabOperationType: 'tabOperationType',
tabOperationBeforeType:'tabOperationBeforeType' tabOperationBeforeType: 'tabOperationBeforeType'
} }
export const scoreUrl = [ export const scoreUrl = [
@@ -676,9 +679,6 @@ export const sessionsColumnNameGroup = {
export const bytesCycleColumnNameGroup = { export const bytesCycleColumnNameGroup = {
total: 'bytesRate' total: 'bytesRate'
} }
export const bytesCycleColumnNameGroupForNmp = {
through: 'throughBitsRate'
}
export const packetsCycleColumnNameGroup = { export const packetsCycleColumnNameGroup = {
total: 'packetsRate' total: 'packetsRate'
} }
@@ -686,6 +686,10 @@ export const sessionsCycleColumnNameGroup = {
total: 'sessionsRate' total: 'sessionsRate'
} }
export const bytesCycleColumnNameGroupForNmp = {
through: 'throughBitsRate'
}
// 不同表格类型对应的相关数据 // 不同表格类型对应的相关数据
export const networkTable = { export const networkTable = {
networkOverview: { networkOverview: {

View File

@@ -1,7 +1,7 @@
import { ElMessageBox, ElMessage } from 'element-plus' import { ElMessageBox, ElMessage } from 'element-plus'
import i18n from '@/i18n' import i18n from '@/i18n'
import _ from 'lodash' import _ from 'lodash'
import { storageKey, iso36112, topDomain, echartsFontSize, dbGeoDataTableName } from '@/utils/constants' import { storageKey, iso36112, topDomain, echartsFontSize, dbGeoDataTableName, networkTable } from '@/utils/constants'
import { getIso36112JsonData } from '@/utils/api' import { getIso36112JsonData } from '@/utils/api'
import { format } from 'echarts' import { format } from 'echarts'
import router from '@/router' import router from '@/router'
@@ -846,6 +846,74 @@ export function changeTabState (param, value) {
}) })
} }
export function combineTabList (tableType, list, commonTabList) {
const curTableInCode = networkTable[tableType] ? networkTable[tableType] : networkTable.networkOverview
const listInCode = curTableInCode ? curTableInCode.tabList : []
list.forEach(tab => {
// 配置的内容
const commonTab = commonTabList.find(item => item.name === tab.name)
tab.label = commonTab ? commonTab.i18n : ''
tab.prop = commonTab ? commonTab.prop : ''
if (!tab.hasOwnProperty('checked')) {
tab.checked = tab ? tab.show : true
}
if (!tab.hasOwnProperty('disabled')) {
tab.disabled = tab ? !tab.enable : false
}
if (!tab.hasOwnProperty('panelId')) {
tab.panelId = tab ? tab.panelIdOfFourthMenu : null
}
// 代码里写死的
const tabInCode = listInCode ? listInCode.find(item => item.label === tab.label) : {}
tab.queryCycleTotalProp = tabInCode ? tabInCode.queryCycleTotalProp : null
tab.dillDownProp = tabInCode ? tabInCode.dillDownProp : []
})
}
export function setUserConfig () {
const userTableConfig = this.getUserLocalConfig()
if (userTableConfig) {
const newTabConfigs = []
userTableConfig.tabConfig.forEach(tab => {
const tabConfig = this.list.find(item => item.name === tab.name)
if (tabConfig) {
tabConfig.checked = tab ? tab.checked : true
} else {
tabConfig.checked = true
}
newTabConfigs.push(tabConfig)
})
this.list = newTabConfigs
}
}
export function getUserDrilldownTableConfig (tableType, curMetric) {
let list = []
const defaultDrillDownTableConfigs = JSON.parse(localStorage.getItem(storageKey.drillDownTableConfig))// 所有表格的配置
const currentTableConfig = defaultDrillDownTableConfigs.find(config => config.route === tableType)
const commonTabList = currentTableConfig ? currentTableConfig.tabs : []
const tables = currentTableConfig ? currentTableConfig.tables : []
if (tables && tables.length > 0) {
const curTableOldConfig = tables.find(table => table.id === tableType)
const curTable = curTableOldConfig || null
if (curTable) {
if (curTable.hasMetricSearch) { // 有metric
const metricsList = curTable ? curTable.metrics : []
if (metricsList && metricsList.length > 0) {
const metricTab = metricsList.find(metric => metric.name === curMetric)
list = metricTab ? metricTab.tabs : []
}
} else { // 无metric
list = curTable ? curTable.tabs : []
}
combineTabList(tableType, list, commonTabList)
// this.combineColumnList(this.customTableTitles)
// this.setUserConfig(list)
}
}
return list
}
// cleanOldParams: true|false是否清除oldParams // cleanOldParams: true|false是否清除oldParams
export function urlParamsHandler (url, oldParams, newParams, cleanOldParams) { export function urlParamsHandler (url, oldParams, newParams, cleanOldParams) {
let newUrl = url.split('?')[0] let newUrl = url.split('?')[0]

View File

@@ -76,8 +76,8 @@ export default {
npmThirdLevelMenuScore: { npmThirdLevelMenuScore: {
deep: true, deep: true,
handler (n) { handler (n) {
//const curOperationType = this.$store.getters.getTabOperationType // const curOperationType = this.$store.getters.getTabOperationType
const curOperationType = this.getUrlParam(this.curTabState.tabOperationType, '',true) const curOperationType = this.getUrlParam(this.curTabState.tabOperationType, '', true)
if (curOperationType === operationType.thirdMenu) { // 点击的为第三级菜单 if (curOperationType === operationType.thirdMenu) { // 点击的为第三级菜单
this.score = n this.score = n
} }
@@ -87,8 +87,8 @@ 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) : '' this.panelName = this.$route.query.panelName ? this.$t(this.$route.query.panelName) : ''
//const curOperationType = this.$store.getters.getTabOperationType // const curOperationType = this.$store.getters.getTabOperationType
const curOperationType = this.getUrlParam(this.curTabState.tabOperationType, '',true) const curOperationType = this.getUrlParam(this.curTabState.tabOperationType, '', true)
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 columnValue = this.getUrlParam(this.curTabState.fourthMenu, '')
@@ -240,13 +240,13 @@ export default {
this.timeFilter = JSON.parse(JSON.stringify(this.timeFilter)) this.timeFilter = JSON.parse(JSON.stringify(this.timeFilter))
} }
}, },
getUrlParam (param, defaultValue,isNumber) { getUrlParam (param, defaultValue, isNumber) {
if(isNumber){ if (isNumber) {
return this.$route.query[param] ? Number(this.$route.query[param]) : defaultValue return this.$route.query[param] ? Number(this.$route.query[param]) : defaultValue
}else { } else {
return this.$route.query[param] ? this.$route.query[param] : defaultValue return this.$route.query[param] ? this.$route.query[param] : defaultValue
} }
}, }
} }
} }
</script> </script>

View File

@@ -132,7 +132,7 @@ import { get, put } from '@/utils/http'
import { api } from '@/utils/api' import { api } from '@/utils/api'
import _ from 'lodash' import _ from 'lodash'
import { getSecond } from '@/utils/date-util' import { getSecond } from '@/utils/date-util'
import { getChainRatio, overwriteUrl, urlParamsHandler } from '@/utils/tools' import { getChainRatio, overwriteUrl, urlParamsHandler, getUserDrilldownTableConfig } from '@/utils/tools'
import loading from '@/components/common/Loading' import loading from '@/components/common/Loading'
import ChartNoData from '@/views/charts/charts/ChartNoData' import ChartNoData from '@/views/charts/charts/ChartNoData'
import { appStackedLineTooltipFormatter } from '@/views/charts/charts/tools' import { appStackedLineTooltipFormatter } from '@/views/charts/charts/tools'
@@ -315,10 +315,10 @@ export default {
} }
this.init() this.init()
}, },
getUrlParam (param, defaultValue,isNumber) { getUrlParam (param, defaultValue, isNumber) {
if(isNumber){ if (isNumber) {
return this.$route.query[param] ? Number(this.$route.query[param]) : defaultValue return this.$route.query[param] ? Number(this.$route.query[param]) : defaultValue
}else { } else {
return this.$route.query[param] ? this.$route.query[param] : defaultValue return this.$route.query[param] ? this.$route.query[param] : defaultValue
} }
}, },
@@ -330,18 +330,21 @@ export default {
tabType = 'network.applications' tabType = 'network.applications'
} }
if (tabType) { if (tabType) {
//const oldCurTab = this.$store.getters.getNetworkOverviewBeforeTab // const oldCurTab = this.$store.getters.getNetworkOverviewBeforeTab
const oldCurTab = this.getUrlParam(this.curTabState.networkOverviewBeforeTab, '') const oldCurTab = this.getUrlParam(this.curTabState.networkOverviewBeforeTab, '')
const curTable = networkTable.networkOverview const curTable = networkTable.networkOverview
const list = this.$store.getters.getNetworkOverviewTabList // const list = this.$store.getters.getNetworkOverviewTabList
const tableType = this.$route.params ? this.$route.params.typeName : 'networkOverview'
const metric = this.getUrlParam(this.curTabState.tableMetric, 'Bits/s')
const list = getUserDrilldownTableConfig(tableType, metric)
const tabGroup = list.filter(item => item.label === tabType) const tabGroup = list.filter(item => item.label === tabType)
if (tabGroup && tabGroup.length > 0) { if (tabGroup && tabGroup.length > 0) {
//this.$store.commit('setNetworkOverviewBeforeTab', tabGroup[0]) // this.$store.commit('setNetworkOverviewBeforeTab', tabGroup[0])
this.changeUrlTabState(this.curTabState.networkOverviewBeforeTab, tabGroup[0].prop) this.changeUrlTabState(this.curTabState.networkOverviewBeforeTab, tabGroup[0].prop)
} }
//this.$store.commit('setTabOperationBeforeType', this.$store.getters.getTabOperationType) // this.$store.commit('setTabOperationBeforeType', this.$store.getters.getTabOperationType)
//this.$store.commit('setTabOperationType', operationType.fourthMenu) // this.$store.commit('setTabOperationType', operationType.fourthMenu)
this.changeUrlTabState(this.curTabState.tabOperationBeforeType, this.getUrlParam(this.curTabState.tabOperationType, '',true)) this.changeUrlTabState(this.curTabState.tabOperationBeforeType, this.getUrlParam(this.curTabState.tabOperationType, '', true))
this.changeUrlTabState(this.curTabState.tabOperationType, operationType.fourthMenu) this.changeUrlTabState(this.curTabState.tabOperationType, operationType.fourthMenu)
const queryCondition = [] const queryCondition = []

View File

@@ -134,7 +134,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, urlParamsHandler, overwriteUrl } from '@/utils/tools' import { getChainRatio, computeScore, changeCurTab, urlParamsHandler, overwriteUrl, getUserDrilldownTableConfig } 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 {
@@ -252,22 +252,32 @@ export default {
this.toggleLoading(false) this.toggleLoading(false)
}) })
}, },
getUrlParam (param, defaultValue, isNumber) {
if (isNumber) {
return this.$route.query[param] ? Number(this.$route.query[param]) : defaultValue
} else {
return this.$route.query[param] ? this.$route.query[param] : defaultValue
}
},
drillDownData (key) { drillDownData (key) {
const value = npmCategoryToAppCategoryMap[key] const value = npmCategoryToAppCategoryMap[key]
const tabType = 'network.applicationCategories' const tabType = 'network.applicationCategories'
//const oldCurTab = this.$store.getters.getNetworkOverviewBeforeTab // const oldCurTab = this.$store.getters.getNetworkOverviewBeforeTab
const oldCurTab = this.getUrlParam(this.curTabState.networkOverviewBeforeTab, '') const oldCurTab = this.getUrlParam(this.curTabState.networkOverviewBeforeTab, '')
// const curTable = networkTable.networkOverview // const curTable = networkTable.networkOverview
const curTable = networkTable.networkAppPerformance const curTable = networkTable.networkAppPerformance
const list = this.$store.getters.getNetworkOverviewTabList // const list = this.$store.getters.getNetworkOverviewTabList
const tableType = this.$route.params ? this.$route.params.typeName : 'networkOverview'
const metric = this.getUrlParam(this.curTabState.tableMetric, 'Bits/s')
const list = getUserDrilldownTableConfig(tableType, metric)
const tabGroup = list.filter(item => item.label === tabType) const tabGroup = list.filter(item => item.label === tabType)
if (tabGroup && tabGroup.length > 0) { if (tabGroup && tabGroup.length > 0) {
//this.$store.commit('setNetworkOverviewBeforeTab', tabGroup[0]) // this.$store.commit('setNetworkOverviewBeforeTab', tabGroup[0])
this.changeUrlTabState(this.curTabState.networkOverviewBeforeTab, tabGroup[0].prop) this.changeUrlTabState(this.curTabState.networkOverviewBeforeTab, tabGroup[0].prop)
} }
//this.$store.commit('setTabOperationBeforeType', this.$store.getters.getTabOperationType) // this.$store.commit('setTabOperationBeforeType', this.$store.getters.getTabOperationType)
//this.$store.commit('setTabOperationType', operationType.fourthMenu) // this.$store.commit('setTabOperationType', operationType.fourthMenu)
this.changeUrlTabState(this.curTabState.tabOperationBeforeType, this.getUrlParam(this.curTabState.tabOperationType, '',true)) this.changeUrlTabState(this.curTabState.tabOperationBeforeType, this.getUrlParam(this.curTabState.tabOperationType, '', true))
this.changeUrlTabState(this.curTabState.tabOperationType, operationType.fourthMenu) this.changeUrlTabState(this.curTabState.tabOperationType, operationType.fourthMenu)
const queryCondition = [] const queryCondition = []