2022-07-12 17:17:38 +08:00
|
|
|
|
<template>
|
2022-08-30 09:34:38 +08:00
|
|
|
|
<div class="tabs" :style="showTabs ? (tableData.length > 10 && showRecordNum === 10 ? 'height: calc(100% - 40px);'
|
|
|
|
|
|
: 'height: calc(100% - 2px)')
|
2022-08-30 17:37:21 +08:00
|
|
|
|
: (tableData.length > 10 && showRecordNum === 10 ? 'height: calc(100% - 64px);'
|
|
|
|
|
|
: 'height: calc(100% - 26px);')">
|
2022-07-12 17:17:38 +08:00
|
|
|
|
<el-tabs v-model="activeTab"
|
2022-08-26 16:26:31 +08:00
|
|
|
|
:class="showTabs?'cn-chart__tabs':'tab-hide cn-chart__tabs cn-chart__tabs-hide-tab'"
|
2022-07-12 17:17:38 +08:00
|
|
|
|
@tab-click="handleClick"
|
|
|
|
|
|
>
|
2022-08-08 20:54:35 +08:00
|
|
|
|
<template v-for="(tab,index) in list">
|
|
|
|
|
|
<el-tab-pane v-if="tab.checked"
|
|
|
|
|
|
:name="tab.label"
|
|
|
|
|
|
:key="index"
|
|
|
|
|
|
:ref="`chart-tab-${index}`"
|
|
|
|
|
|
class="tab-pane"
|
2022-07-12 17:17:38 +08:00
|
|
|
|
>
|
2022-08-08 20:54:35 +08:00
|
|
|
|
<template #label>
|
|
|
|
|
|
{{$t(tab.label)}}
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<el-table
|
|
|
|
|
|
:id="`tabTable_${index}`"
|
|
|
|
|
|
:ref="`dataTable_${index}`"
|
2022-08-26 16:26:31 +08:00
|
|
|
|
:data="tableData.slice(0,showRecordNum)"
|
2022-08-08 20:54:35 +08:00
|
|
|
|
border
|
|
|
|
|
|
:cell-style="tableCellStyle"
|
|
|
|
|
|
:header-cell-style="tableHeaderCellStyle"
|
2022-08-30 09:34:38 +08:00
|
|
|
|
:class="tableClass"
|
2022-08-08 20:54:35 +08:00
|
|
|
|
height="100%"
|
2022-08-22 19:54:41 +08:00
|
|
|
|
empty-text=" "
|
2022-09-06 08:45:26 +08:00
|
|
|
|
@sort-change="((column) => {sortChange(column,index)})"
|
|
|
|
|
|
:key="index"
|
2022-08-08 20:54:35 +08:00
|
|
|
|
>
|
|
|
|
|
|
<template v-for="(item,index) in customTableTitles">
|
2022-07-22 18:22:00 +08:00
|
|
|
|
<el-table-column
|
2022-08-08 20:54:35 +08:00
|
|
|
|
v-if="item.checked"
|
2022-09-05 16:00:42 +08:00
|
|
|
|
sortable="custom"
|
2022-08-26 16:26:31 +08:00
|
|
|
|
align="center"
|
|
|
|
|
|
:prop="item.prop"
|
2022-08-08 20:54:35 +08:00
|
|
|
|
class="data-column"
|
2022-09-06 08:45:26 +08:00
|
|
|
|
:ref="item.prop"
|
2022-08-08 20:54:35 +08:00
|
|
|
|
>
|
2022-09-06 08:45:26 +08:00
|
|
|
|
<template #header >
|
|
|
|
|
|
<span class="data-column__span" >{{$t(item.label)}}</span>
|
2022-08-05 15:46:31 +08:00
|
|
|
|
</template>
|
2022-08-08 20:54:35 +08:00
|
|
|
|
<template #default="scope" :column="item">
|
2022-08-19 10:46:24 +08:00
|
|
|
|
<template v-if="item.columnType === tableColumnType.chainRatio" >
|
2022-08-08 20:54:35 +08:00
|
|
|
|
<div class="data-total" >
|
2022-08-26 16:26:31 +08:00
|
|
|
|
<div class="data-value">
|
|
|
|
|
|
{{scope.row[item.prop]?((scope.row[item.prop][0]||scope.row[item.prop][0]===0)? unitConvert(scope.row[item.prop][0], unitTypes.number).join(' ') : '-'):'' }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="data-trend">
|
|
|
|
|
|
<template v-if="scope.row[item.prop]">
|
|
|
|
|
|
<div v-if="scope.row[item.prop][1] === 'up'" class="data-total-trend data-total-trend-red">
|
|
|
|
|
|
<i class="cn-icon-rise1 cn-icon"></i><span>{{scope.row[item.prop][2]}}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div v-else-if="scope.row[item.prop][1] === 'down'" class="data-total-trend data-total-trend-green">
|
|
|
|
|
|
<i class="cn-icon-decline cn-icon"></i><span>{{scope.row[item.prop][2]}}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div v-else-if="scope.row[item.prop][1] === 'noChange'" class="data-total-trend data-total-trend-black">
|
|
|
|
|
|
<i class="cn-icon-constant cn-icon"></i>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<template v-else>
|
|
|
|
|
|
-
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</div>
|
2022-08-08 20:54:35 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
2022-08-19 10:46:24 +08:00
|
|
|
|
<template v-else-if="item.columnType === tableColumnType.dillDown" >
|
|
|
|
|
|
<div class="data-click" @click="handleTabValue(item.label,scope.row['tab'])">{{scope.row['tab']}}</div>
|
2022-08-08 20:54:35 +08:00
|
|
|
|
</template>
|
2022-08-24 16:50:18 +08:00
|
|
|
|
<template v-else-if="item.prop === 'score'" >
|
|
|
|
|
|
{{scope.row[item.prop] ? unitConvert(scope.row[item.prop], unitTypes.number).join(' ') : '0'}}
|
|
|
|
|
|
</template>
|
2022-08-08 20:54:35 +08:00
|
|
|
|
<template v-else>
|
|
|
|
|
|
{{scope.row[item.prop] ? unitConvert(scope.row[item.prop], unitTypes.number).join(' ') : '-'}}
|
|
|
|
|
|
</template>
|
2022-08-05 15:46:31 +08:00
|
|
|
|
</template>
|
2022-08-08 20:54:35 +08:00
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</template>
|
2022-08-24 16:50:18 +08:00
|
|
|
|
<template v-slot:empty>
|
2022-08-25 15:14:39 +08:00
|
|
|
|
<div class="table-no-data" v-if="isNoData">
|
2022-08-24 16:50:18 +08:00
|
|
|
|
<div class="table-no-data__title">{{ $t('npm.noData') }}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
2022-08-08 20:54:35 +08:00
|
|
|
|
</el-table>
|
|
|
|
|
|
</el-tab-pane>
|
2022-07-12 17:17:38 +08:00
|
|
|
|
|
2022-08-26 16:26:31 +08:00
|
|
|
|
</template>
|
2022-07-12 17:17:38 +08:00
|
|
|
|
</el-tabs>
|
2022-08-19 10:46:24 +08:00
|
|
|
|
<div class="tab-search" >
|
|
|
|
|
|
<div class="search-select" v-if="hasMetricSearch">
|
2022-07-14 17:46:06 +08:00
|
|
|
|
<span>{{$t('network.metric')}}:</span>
|
2022-07-12 17:17:38 +08:00
|
|
|
|
<el-select v-model="metric"
|
|
|
|
|
|
class="option__select select-column"
|
2022-08-24 10:29:52 +08:00
|
|
|
|
popper-class="common-select"
|
2022-07-14 17:46:06 +08:00
|
|
|
|
:popper-append-to-body="false"
|
2022-08-05 15:46:31 +08:00
|
|
|
|
key="tabMetric"
|
|
|
|
|
|
@change="changeMetric"
|
2022-07-12 17:17:38 +08:00
|
|
|
|
size="mini">
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in options"
|
2022-08-05 15:46:31 +08:00
|
|
|
|
:key="item.label"
|
2022-07-12 17:17:38 +08:00
|
|
|
|
:label="item.label"
|
|
|
|
|
|
:value="item.value"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</div>
|
2022-07-22 18:22:00 +08:00
|
|
|
|
<el-popover placement="bottom-end"
|
|
|
|
|
|
:width="240"
|
2022-07-20 19:47:53 +08:00
|
|
|
|
:show-arrow="false"
|
2022-07-22 18:22:00 +08:00
|
|
|
|
:append-to-body="true"
|
2022-07-20 19:47:53 +08:00
|
|
|
|
:hide-after="0"
|
|
|
|
|
|
popper-class="customize-tab__popper"
|
2022-07-22 18:22:00 +08:00
|
|
|
|
@show="handleCustomizeButton(true)"
|
|
|
|
|
|
@hide="handleCustomizeButton(false)"
|
2022-07-20 19:47:53 +08:00
|
|
|
|
trigger="click">
|
|
|
|
|
|
<template #reference>
|
2022-07-22 18:22:00 +08:00
|
|
|
|
<div class="search-customize-tab " :class="showBackground?'search-customize-tab__active':''" >
|
|
|
|
|
|
<i class="cn-icon-gear cn-icon icon-gear"></i> <span> {{$t('network.customize')}}</span>
|
2022-07-20 19:47:53 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
2022-07-12 17:17:38 +08:00
|
|
|
|
|
2022-08-08 20:54:35 +08:00
|
|
|
|
<el-tabs v-model="activeCustomize"
|
|
|
|
|
|
@tab-click="handleCustomizeClick"
|
|
|
|
|
|
type="card"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-tab-pane :label="$t('network.tabs')" name="tabs" width="50%" v-if="showTabs" >
|
|
|
|
|
|
<transition-group name="dragTabs" class="list" tag="ul" ref="tabs">
|
|
|
|
|
|
<li v-for="(item, index) in list"
|
|
|
|
|
|
:key="item.label"
|
|
|
|
|
|
class="list-item"
|
|
|
|
|
|
@dragenter="dragenter($event, index)"
|
|
|
|
|
|
@dragover="dragover($event, index)"
|
|
|
|
|
|
@dragstart="dragstart(index)"
|
|
|
|
|
|
draggable="true"
|
|
|
|
|
|
>
|
|
|
|
|
|
<i class="cn-icon-sort cn-icon icon-drag"
|
|
|
|
|
|
:key="item.label"
|
|
|
|
|
|
></i> <el-checkbox @change="tabChange(index)" :disabled="item.disabled" v-model="item.checked" :label="$t(item.label) " size="small" :key="item.label"/>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
</transition-group>
|
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
<el-tab-pane :label="$t('network.metric')" name="metrics" width="50%" >
|
|
|
|
|
|
<transition-group name="dragMetric" class="list" tag="ul" ref="metric">
|
|
|
|
|
|
<template v-for="(item, index) in customTableTitles">
|
|
|
|
|
|
<li v-if="item.tabColumn != true"
|
2022-07-20 19:47:53 +08:00
|
|
|
|
:key="item.label"
|
|
|
|
|
|
class="list-item"
|
2022-08-08 20:54:35 +08:00
|
|
|
|
@dragenter="dragMetricEnter($event, index)"
|
|
|
|
|
|
@dragover="dragMetricOver($event, index)"
|
|
|
|
|
|
@dragstart="dragMetricStart(index)"
|
2022-07-22 18:22:00 +08:00
|
|
|
|
draggable="true"
|
|
|
|
|
|
>
|
|
|
|
|
|
<i class="cn-icon-sort cn-icon icon-drag"
|
|
|
|
|
|
:key="item.label"
|
2022-08-08 20:54:35 +08:00
|
|
|
|
></i> <el-checkbox @change="metricChange" v-model="item.checked" :label="$t(item.label) " size="small" :key="item.label"/>
|
2022-07-22 18:22:00 +08:00
|
|
|
|
</li>
|
2022-08-08 20:54:35 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</transition-group>
|
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
</el-tabs>
|
2022-07-20 19:47:53 +08:00
|
|
|
|
</el-popover>
|
2022-07-12 17:17:38 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2022-08-30 09:34:38 +08:00
|
|
|
|
<div class="fixed-row" v-if="tableData.length > 10 && showRecordNum===10 ">
|
|
|
|
|
|
<div class="fixed-button" @click="showMore" >{{$t('network.showTop50Results')}}</div>
|
2022-08-26 16:26:31 +08:00
|
|
|
|
</div>
|
2022-07-12 17:17:38 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import { ref } from 'vue'
|
2022-08-26 16:26:31 +08:00
|
|
|
|
import { operationType, unitTypes, networkTable, tableColumnType, networkDefaultLimit } from '@/utils/constants'
|
2022-08-05 15:46:31 +08:00
|
|
|
|
import { get } from '@/utils/http'
|
2022-08-08 20:54:35 +08:00
|
|
|
|
import unitConvert from '@/utils/unit-convert'
|
2022-09-06 08:45:26 +08:00
|
|
|
|
import { getChainRatio, computeScore } from '@/utils/tools'
|
2022-08-24 07:29:40 +08:00
|
|
|
|
import { getSecond } from '@/utils/date-util'
|
2022-08-22 09:57:40 +08:00
|
|
|
|
import chartMixin from '@/views/charts2/chart-mixin'
|
2022-08-24 16:50:18 +08:00
|
|
|
|
import ChartNoData from '@/views/charts/charts/ChartNoData'
|
2022-07-12 17:17:38 +08:00
|
|
|
|
|
|
|
|
|
|
export default {
|
2022-07-14 17:46:06 +08:00
|
|
|
|
name: 'NetworkOverviewTabs',
|
2022-07-12 17:17:38 +08:00
|
|
|
|
data () {
|
|
|
|
|
|
return {
|
2022-08-19 10:46:24 +08:00
|
|
|
|
dragIndex: '',
|
|
|
|
|
|
dragMetricIndex: '',
|
2022-08-05 15:46:31 +08:00
|
|
|
|
metric: 'Bits/s',
|
|
|
|
|
|
orderBy: 'bytesTotal',
|
|
|
|
|
|
tab: 'ip',
|
2022-08-08 20:54:35 +08:00
|
|
|
|
unitConvert,
|
|
|
|
|
|
unitTypes,
|
2022-08-24 16:50:18 +08:00
|
|
|
|
networkTable,
|
|
|
|
|
|
isNoData: false,
|
2022-07-12 17:17:38 +08:00
|
|
|
|
options: [
|
|
|
|
|
|
{
|
2022-08-05 15:46:31 +08:00
|
|
|
|
value: 'Bits/s',
|
|
|
|
|
|
label: 'Bits/s'
|
2022-07-12 17:17:38 +08:00
|
|
|
|
},
|
|
|
|
|
|
{
|
2022-08-05 15:46:31 +08:00
|
|
|
|
value: 'Packets/s',
|
|
|
|
|
|
label: 'Packets/s'
|
2022-07-12 17:17:38 +08:00
|
|
|
|
},
|
|
|
|
|
|
{
|
2022-08-05 15:46:31 +08:00
|
|
|
|
value: 'Sessions/s',
|
|
|
|
|
|
label: 'Sessions/s'
|
2022-07-12 17:17:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
],
|
2022-08-19 10:46:24 +08:00
|
|
|
|
customTableTitles: [],
|
2022-08-24 07:29:40 +08:00
|
|
|
|
list: [], // 当前状态列表
|
|
|
|
|
|
networkTabList: [], // 原始状态列表
|
2022-08-05 15:46:31 +08:00
|
|
|
|
showBackground: false,
|
|
|
|
|
|
tableData: [],
|
2022-09-05 16:00:42 +08:00
|
|
|
|
tableDataBackup: [],
|
2022-08-26 16:26:31 +08:00
|
|
|
|
showRecordNum: 10,
|
2022-08-05 15:46:31 +08:00
|
|
|
|
showTabs: true,
|
2022-08-24 07:29:40 +08:00
|
|
|
|
columnNameGroup: {},
|
|
|
|
|
|
cycleColumnNameGroup: {},
|
2022-08-05 15:46:31 +08:00
|
|
|
|
metricUnit: 'bytes',
|
2022-08-26 16:26:31 +08:00
|
|
|
|
// loading: false,
|
2022-08-24 07:29:40 +08:00
|
|
|
|
tableColumnType: tableColumnType,
|
|
|
|
|
|
curTable: {}, // 当前的表格类型
|
|
|
|
|
|
tableType: '',
|
|
|
|
|
|
hasMetricSearch: true,
|
|
|
|
|
|
activeTab: '',
|
|
|
|
|
|
activeCustomize: '',
|
2022-09-06 08:45:26 +08:00
|
|
|
|
networkSearchUrl: {},
|
|
|
|
|
|
column: {},
|
|
|
|
|
|
index: 0
|
2022-07-12 17:17:38 +08:00
|
|
|
|
}
|
2022-07-20 19:47:53 +08:00
|
|
|
|
},
|
2022-08-05 15:46:31 +08:00
|
|
|
|
props: {
|
|
|
|
|
|
chartData: Array,
|
|
|
|
|
|
timeFilter: Object,
|
|
|
|
|
|
chart: Object
|
|
|
|
|
|
},
|
2022-07-20 19:47:53 +08:00
|
|
|
|
components: {
|
2022-08-24 16:50:18 +08:00
|
|
|
|
ChartNoData
|
2022-08-05 15:46:31 +08:00
|
|
|
|
},
|
|
|
|
|
|
watch: {
|
|
|
|
|
|
chartData: {
|
|
|
|
|
|
deep: true,
|
|
|
|
|
|
handler (n) {
|
|
|
|
|
|
if (this.chartData) {
|
|
|
|
|
|
this.initData()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-08-24 11:54:09 +08:00
|
|
|
|
},
|
|
|
|
|
|
timeFilter: {
|
|
|
|
|
|
deep: true,
|
|
|
|
|
|
handler (n) {
|
|
|
|
|
|
const curTab = this.getCurTab()
|
|
|
|
|
|
let queryParams = {
|
|
|
|
|
|
orderBy: this.orderBy,
|
2022-08-26 16:26:31 +08:00
|
|
|
|
limit: networkDefaultLimit,
|
2022-08-24 11:54:09 +08:00
|
|
|
|
type: curTab.prop
|
|
|
|
|
|
}
|
|
|
|
|
|
const condition = this.$store.getters.getQueryCondition
|
|
|
|
|
|
if (condition) {
|
|
|
|
|
|
queryParams = {
|
|
|
|
|
|
orderBy: this.orderBy,
|
2022-08-26 16:26:31 +08:00
|
|
|
|
limit: networkDefaultLimit,
|
2022-08-24 11:54:09 +08:00
|
|
|
|
type: curTab.prop,
|
|
|
|
|
|
q: condition
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
this.$emit('getChartData', this.getCurUrl(), queryParams)
|
|
|
|
|
|
}
|
2022-08-05 15:46:31 +08:00
|
|
|
|
}
|
2022-07-12 17:17:38 +08:00
|
|
|
|
},
|
2022-08-30 09:34:38 +08:00
|
|
|
|
computed: {
|
|
|
|
|
|
tableClass () {
|
|
|
|
|
|
let className
|
|
|
|
|
|
if (this.showRecordNum >= 10) {
|
|
|
|
|
|
className = 'tab-table__average'
|
|
|
|
|
|
} else {
|
|
|
|
|
|
className = 'tab-table'
|
|
|
|
|
|
}
|
|
|
|
|
|
if (!(this.tableData.length > 10 && this.showRecordNum === 10)) {
|
|
|
|
|
|
className = 'tab-table tab-table__no-bottom'
|
|
|
|
|
|
}
|
|
|
|
|
|
return className
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2022-08-22 09:57:40 +08:00
|
|
|
|
mixins: [chartMixin],
|
2022-07-12 17:17:38 +08:00
|
|
|
|
methods: {
|
2022-08-26 16:26:31 +08:00
|
|
|
|
showMore () {
|
|
|
|
|
|
this.showRecordNum = 50
|
2022-09-06 08:45:26 +08:00
|
|
|
|
this.sortChange(this.column, this.index)// 当前选中的tab????
|
2022-08-26 16:26:31 +08:00
|
|
|
|
},
|
|
|
|
|
|
rowClass (row, column, rowIndex, columnIndex) {
|
|
|
|
|
|
if (rowIndex === 49) {
|
|
|
|
|
|
return 'fixed-row'
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2022-09-05 16:00:42 +08:00
|
|
|
|
getChartType (char) {
|
|
|
|
|
|
// 数字可按照排序的要求进行自定义,我这边产品的要求是
|
|
|
|
|
|
// 数字(0->9)->大写字母(A->Z)->小写字母(a->z)->中文拼音(a->z)
|
|
|
|
|
|
if (/^[\u4e00-\u9fa5]$/.test(char)) {
|
|
|
|
|
|
return ['zh', 300]
|
|
|
|
|
|
}
|
|
|
|
|
|
if (/^[a-zA-Z]$/.test(char)) {
|
|
|
|
|
|
return ['en', 200]
|
|
|
|
|
|
}
|
|
|
|
|
|
if (/^[0-9]$/.test(char)) {
|
|
|
|
|
|
return ['number', 100]
|
|
|
|
|
|
}
|
|
|
|
|
|
return ['others', 999]
|
|
|
|
|
|
},
|
2022-09-06 08:45:26 +08:00
|
|
|
|
sortChange (column, index) {
|
|
|
|
|
|
this.index = index
|
|
|
|
|
|
|
|
|
|
|
|
this.column = column
|
2022-09-05 16:00:42 +08:00
|
|
|
|
const arr = []
|
|
|
|
|
|
this.tableData.slice(0, this.showRecordNum).forEach(val => {
|
|
|
|
|
|
arr.push(val)
|
|
|
|
|
|
})
|
|
|
|
|
|
if (column.prop != 'tab') {
|
|
|
|
|
|
if (column.order == 'descending') {
|
|
|
|
|
|
arr.sort((a, b) => {
|
|
|
|
|
|
const str1 = Array.isArray(a[column.prop]) ? a[column.prop][0] : a[column.prop]
|
|
|
|
|
|
const str2 = Array.isArray(b[column.prop]) ? b[column.prop][0] : b[column.prop]
|
|
|
|
|
|
return str2 - str1
|
|
|
|
|
|
})
|
|
|
|
|
|
if (this.tableData.length - 1 > this.showRecordNum) {
|
|
|
|
|
|
this.tableData = arr.concat(this.tableDataBackup.slice(this.showRecordNum))
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.tableData = arr
|
|
|
|
|
|
}
|
|
|
|
|
|
} else if (column.order == 'ascending') {
|
|
|
|
|
|
arr.sort((a, b) => {
|
|
|
|
|
|
const str1 = Array.isArray(a[column.prop]) ? a[column.prop][0] : a[column.prop]
|
|
|
|
|
|
const str2 = Array.isArray(b[column.prop]) ? b[column.prop][0] : b[column.prop]
|
|
|
|
|
|
return str1 - str2
|
|
|
|
|
|
})
|
|
|
|
|
|
if (this.tableData.length - 1 > this.showRecordNum) {
|
|
|
|
|
|
this.tableData = arr.concat(this.tableDataBackup.slice(this.showRecordNum))
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.tableData = arr
|
|
|
|
|
|
}
|
|
|
|
|
|
} else if (!column.order) {
|
|
|
|
|
|
this.tableData = this.tableDataBackup
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
if (column.order == 'descending') {
|
|
|
|
|
|
arr.sort((a, b) => {
|
|
|
|
|
|
const aObj = a[column.prop]
|
|
|
|
|
|
const bObj = b[column.prop]
|
|
|
|
|
|
let res = 0
|
|
|
|
|
|
for (let i = 0; ;i++) {
|
|
|
|
|
|
const char1 = aObj[i]
|
|
|
|
|
|
const char2 = bObj[i]
|
|
|
|
|
|
const char1Type = this.getChartType(char1)
|
|
|
|
|
|
const char2Type = this.getChartType(char2)
|
|
|
|
|
|
if (char1 === char2) {
|
|
|
|
|
|
continue
|
|
|
|
|
|
} else {
|
|
|
|
|
|
if (char1Type[0] === 'zh') {
|
|
|
|
|
|
res = char2.localeCompare(char1)
|
|
|
|
|
|
} else if (char1Type[0] === 'en') {
|
|
|
|
|
|
res = char2.charCodeAt(0) - char1.charCodeAt(0)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
res = char2 - char1
|
|
|
|
|
|
}
|
|
|
|
|
|
break
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return res
|
|
|
|
|
|
})
|
|
|
|
|
|
if (this.tableData.length - 1 > this.showRecordNum) {
|
|
|
|
|
|
this.tableData = arr.concat(this.tableDataBackup.slice(this.showRecordNum))
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.tableData = arr
|
|
|
|
|
|
}
|
|
|
|
|
|
} else if (column.order == 'ascending') {
|
|
|
|
|
|
arr.sort((a, b) => {
|
|
|
|
|
|
const aObj = a[column.prop]
|
|
|
|
|
|
const bObj = b[column.prop]
|
|
|
|
|
|
let res = 0
|
|
|
|
|
|
for (let i = 0; ;i++) {
|
|
|
|
|
|
const char1 = aObj[i]
|
|
|
|
|
|
const char2 = bObj[i]
|
|
|
|
|
|
const char1Type = this.getChartType(char1)
|
|
|
|
|
|
const char2Type = this.getChartType(char2)
|
|
|
|
|
|
if (char1 === char2) {
|
|
|
|
|
|
continue
|
|
|
|
|
|
} else {
|
|
|
|
|
|
if (char1Type[0] === 'zh') {
|
|
|
|
|
|
res = char1.localeCompare(char2)
|
|
|
|
|
|
} else if (char1Type[0] === 'en') {
|
|
|
|
|
|
res = char1.charCodeAt(0) - char2.charCodeAt(0)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
res = char1 - char2
|
|
|
|
|
|
}
|
|
|
|
|
|
break
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return res
|
|
|
|
|
|
})
|
|
|
|
|
|
if (this.tableData.length - 1 > this.showRecordNum) {
|
|
|
|
|
|
this.tableData = arr.concat(this.tableDataBackup.slice(this.showRecordNum))
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.tableData = arr
|
|
|
|
|
|
}
|
|
|
|
|
|
} else if (!column.order) {
|
|
|
|
|
|
this.tableData = this.tableDataBackup
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2022-08-05 15:46:31 +08:00
|
|
|
|
changeMetric () {
|
2022-08-30 09:34:38 +08:00
|
|
|
|
this.showRecordNum = 10
|
2022-08-05 15:46:31 +08:00
|
|
|
|
const beforeType = this.$store.getters.getTabOperationBeforeType
|
|
|
|
|
|
if (beforeType != operationType.thirdMenu) {
|
|
|
|
|
|
this.$store.commit('setTabOperationBeforeType', this.$store.getters.getTabOperationType)
|
|
|
|
|
|
}
|
|
|
|
|
|
this.$store.commit('setTabOperationType', operationType.changeMetric)
|
|
|
|
|
|
const curTab = this.getCurTab()
|
|
|
|
|
|
const label = curTab.label
|
|
|
|
|
|
if (this.metric === 'Bits/s') {
|
2022-08-19 10:46:24 +08:00
|
|
|
|
this.columnNameGroup = this.curTable.bytesColumnNameGroup
|
2022-08-24 07:29:40 +08:00
|
|
|
|
this.cycleColumnNameGroup = this.curTable.bytesCycleColumnNameGroup
|
2022-08-05 15:46:31 +08:00
|
|
|
|
this.orderBy = 'bytesTotal'
|
|
|
|
|
|
this.metricUnit = 'bytes'
|
2022-08-19 10:46:24 +08:00
|
|
|
|
const titleGroup = []
|
2022-08-05 15:46:31 +08:00
|
|
|
|
if (this.customTableTitles.length === 2) {
|
2022-08-24 07:29:40 +08:00
|
|
|
|
this.curTable.column.forEach((item, index) => {
|
2022-08-19 10:46:24 +08:00
|
|
|
|
if (item.tabColumn) {
|
|
|
|
|
|
item.label = label
|
|
|
|
|
|
}
|
2022-08-24 07:29:40 +08:00
|
|
|
|
if (index === 1) {
|
2022-08-19 10:46:24 +08:00
|
|
|
|
item.checked = this.customTableTitles[1].checked
|
|
|
|
|
|
}
|
|
|
|
|
|
titleGroup.push(item)
|
|
|
|
|
|
})
|
2022-08-05 15:46:31 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
this.customTableTitles.forEach(item => {
|
|
|
|
|
|
if (item.tabColumn) {
|
|
|
|
|
|
item.label = label
|
|
|
|
|
|
}
|
|
|
|
|
|
titleGroup.push(item)
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2022-08-19 10:46:24 +08:00
|
|
|
|
this.customTableTitles = titleGroup
|
2022-08-05 15:46:31 +08:00
|
|
|
|
} else if (this.metric === 'Packets/s') {
|
2022-08-19 10:46:24 +08:00
|
|
|
|
this.columnNameGroup = this.curTable.packetsColumnNameGroup
|
2022-08-24 07:29:40 +08:00
|
|
|
|
this.cycleColumnNameGroup = this.curTable.packetsCycleColumnNameGroup
|
2022-08-05 15:46:31 +08:00
|
|
|
|
this.orderBy = 'packetsTotal'
|
|
|
|
|
|
this.metricUnit = 'packets'
|
2022-08-19 10:46:24 +08:00
|
|
|
|
const titleGroup = []
|
2022-08-05 15:46:31 +08:00
|
|
|
|
if (this.customTableTitles.length === 2) {
|
2022-08-24 07:29:40 +08:00
|
|
|
|
this.curTable.column.forEach((item, index) => {
|
2022-08-19 10:46:24 +08:00
|
|
|
|
if (item.tabColumn) {
|
|
|
|
|
|
item.label = label
|
|
|
|
|
|
}
|
2022-08-24 07:29:40 +08:00
|
|
|
|
if (index === 1) {
|
2022-08-19 10:46:24 +08:00
|
|
|
|
item.checked = this.customTableTitles[1].checked
|
|
|
|
|
|
}
|
|
|
|
|
|
titleGroup.push(item)
|
|
|
|
|
|
})
|
2022-08-05 15:46:31 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
this.customTableTitles.forEach(item => {
|
|
|
|
|
|
if (item.tabColumn) {
|
|
|
|
|
|
item.label = label
|
|
|
|
|
|
}
|
|
|
|
|
|
titleGroup.push(item)
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2022-08-19 10:46:24 +08:00
|
|
|
|
this.customTableTitles = titleGroup
|
2022-08-05 15:46:31 +08:00
|
|
|
|
} else if (this.metric === 'Sessions/s') {
|
2022-08-19 10:46:24 +08:00
|
|
|
|
this.columnNameGroup = this.curTable.sessionsColumnNameGroup
|
2022-08-24 07:29:40 +08:00
|
|
|
|
this.cycleColumnNameGroup = this.curTable.sessionsCycleColumnNameGroup
|
2022-08-05 15:46:31 +08:00
|
|
|
|
this.orderBy = 'sessions'
|
|
|
|
|
|
this.metricUnit = 'sessions'
|
|
|
|
|
|
let totalChecked = true
|
|
|
|
|
|
this.customTableTitles.forEach(item => {
|
|
|
|
|
|
if (item.prop === 'total') {
|
|
|
|
|
|
totalChecked = item.checked
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2022-08-24 07:29:40 +08:00
|
|
|
|
const totalColumn = this.customTableTitles.filter(item => item.prop === 'total')
|
2022-08-05 15:46:31 +08:00
|
|
|
|
this.customTableTitles = [
|
2022-08-24 07:29:40 +08:00
|
|
|
|
{ label: label, prop: 'tab', checked: true, tabColumn: true, columnType: this.curTable.column[0].columnType },
|
|
|
|
|
|
{ label: 'network.total', prop: 'total', checked: totalChecked, tabColumn: false, columnType: this.curTable.column[1].columnType, cycleDataUrl: totalColumn ? totalColumn.cycleDataUrl : '', isInMainUrl: true }
|
2022-08-05 15:46:31 +08:00
|
|
|
|
]
|
|
|
|
|
|
}
|
|
|
|
|
|
let queryParams = {
|
|
|
|
|
|
orderBy: this.orderBy,
|
2022-08-26 16:26:31 +08:00
|
|
|
|
limit: networkDefaultLimit,
|
2022-08-05 15:46:31 +08:00
|
|
|
|
type: curTab.prop
|
|
|
|
|
|
}
|
|
|
|
|
|
const condition = this.$store.getters.getQueryCondition
|
|
|
|
|
|
if (condition) {
|
|
|
|
|
|
queryParams = {
|
|
|
|
|
|
orderBy: this.orderBy,
|
2022-08-26 16:26:31 +08:00
|
|
|
|
limit: networkDefaultLimit,
|
2022-08-05 15:46:31 +08:00
|
|
|
|
type: curTab.prop,
|
|
|
|
|
|
q: condition
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
this.$emit('getChartData', this.getCurUrl(), queryParams)
|
2022-07-20 19:47:53 +08:00
|
|
|
|
},
|
2022-07-22 18:22:00 +08:00
|
|
|
|
handleCustomizeButton (status) {
|
|
|
|
|
|
this.showBackground = status
|
2022-08-05 15:46:31 +08:00
|
|
|
|
if (!this.showTabs) {
|
|
|
|
|
|
this.activeCustomize = 'metrics'
|
|
|
|
|
|
}
|
2022-08-30 16:45:13 +08:00
|
|
|
|
const tabList = this.list.filter(item => item.checked === true)
|
|
|
|
|
|
const defaultTab = tabList.length > 0 ? tabList[0] : {}
|
|
|
|
|
|
const columnName = this.$store.getters.getBreadcrumbColumnName
|
|
|
|
|
|
const columnValue = this.$store.getters.getBreadcrumbColumnValue
|
|
|
|
|
|
if (tabList.length === 1) {
|
|
|
|
|
|
defaultTab.disabled = true
|
|
|
|
|
|
} else if (tabList.length > 1) {
|
|
|
|
|
|
this.list.forEach(item => {
|
|
|
|
|
|
item.disabled = false
|
|
|
|
|
|
if (columnValue) {
|
|
|
|
|
|
if (item.label === columnName) {
|
|
|
|
|
|
item.disabled = true
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2022-07-22 18:22:00 +08:00
|
|
|
|
},
|
2022-08-05 15:46:31 +08:00
|
|
|
|
getDefaultTab () {
|
|
|
|
|
|
let tabObjGroup = this.list.filter(item => item.checked)
|
|
|
|
|
|
if (tabObjGroup && tabObjGroup.length > 0) {
|
|
|
|
|
|
return tabObjGroup[0]
|
|
|
|
|
|
} else {
|
2022-08-19 10:46:24 +08:00
|
|
|
|
return tabObjGroup = this.networkTabList.filter(item => item.checked)[0]
|
2022-08-05 15:46:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
2022-08-26 16:26:31 +08:00
|
|
|
|
// 隐藏tabs的标题
|
|
|
|
|
|
hideTabs (curTab) {
|
|
|
|
|
|
// 此处的id为tab-name
|
|
|
|
|
|
this.list.forEach(item => {
|
|
|
|
|
|
const tabDom = document.getElementById('tab-' + item.label)
|
|
|
|
|
|
const paneDom = document.getElementById('pane-' + item.label)
|
|
|
|
|
|
if (tabDom) {
|
|
|
|
|
|
tabDom.style.display = 'none'
|
|
|
|
|
|
}
|
|
|
|
|
|
if (paneDom) {
|
|
|
|
|
|
if (curTab.label === item.label) {
|
|
|
|
|
|
paneDom.style.display = ''
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
2022-08-05 15:46:31 +08:00
|
|
|
|
initData () {
|
2022-09-06 08:45:26 +08:00
|
|
|
|
// 取消表格排序高亮的箭头
|
|
|
|
|
|
if (this.column.prop) {
|
|
|
|
|
|
const columns = this.$refs['dataTable_' + this.index]
|
2022-09-06 17:06:51 +08:00
|
|
|
|
? ((Array.isArray(this.$refs['dataTable_' + this.index])
|
|
|
|
|
|
?this.$refs['dataTable_' + this.index][0].$refs.tableHeader
|
|
|
|
|
|
:this.$refs['dataTable_' + this.index].$refs.tableHeader)
|
2022-09-06 08:45:26 +08:00
|
|
|
|
? this.$refs['dataTable_' + this.index].$refs.tableHeader.columns
|
|
|
|
|
|
: [])
|
|
|
|
|
|
: []
|
|
|
|
|
|
columns.forEach(item => {
|
|
|
|
|
|
item.order = ''
|
|
|
|
|
|
})
|
|
|
|
|
|
this.column = {}
|
|
|
|
|
|
this.index = 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 清除表格排序高亮的箭头
|
2022-08-05 15:46:31 +08:00
|
|
|
|
const curTab = this.getCurTab()
|
2022-08-30 16:45:13 +08:00
|
|
|
|
// 针对network overview – app list 点击标题触发下钻,相关内容处理
|
2022-08-05 15:46:31 +08:00
|
|
|
|
const columnName = this.$store.getters.getBreadcrumbColumnName
|
2022-08-30 16:45:13 +08:00
|
|
|
|
if (columnName) {
|
|
|
|
|
|
this.list.forEach(item => {
|
|
|
|
|
|
if (item.label === columnName) {
|
|
|
|
|
|
item.checked = false
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2022-08-05 15:46:31 +08:00
|
|
|
|
|
|
|
|
|
|
this.list.forEach(item => {
|
|
|
|
|
|
const tabDom = document.getElementById('tab-' + item.label)
|
|
|
|
|
|
if (tabDom) {
|
|
|
|
|
|
tabDom.style.display = ''
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const curOperationType = this.$store.getters.getTabOperationType
|
|
|
|
|
|
if (curOperationType === operationType.changeTab) { // 切换tab
|
|
|
|
|
|
if (curTab) { // tab切换
|
|
|
|
|
|
this.activeTab = curTab.label
|
|
|
|
|
|
this.customTableTitles[0].label = curTab.label
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewCurrentTab', curTab)
|
|
|
|
|
|
}
|
|
|
|
|
|
this.showTabs = true
|
|
|
|
|
|
} else if (curOperationType === operationType.thirdMenu) { // 点击的为第三级菜单
|
2022-08-26 16:26:31 +08:00
|
|
|
|
this.hideTabs(curTab)
|
2022-08-05 15:46:31 +08:00
|
|
|
|
this.customTableTitles[0].label = curTab.label
|
|
|
|
|
|
this.showTabs = false
|
2022-08-30 16:45:13 +08:00
|
|
|
|
this.showRecordNum = 10
|
2022-08-05 15:46:31 +08:00
|
|
|
|
} else if (curOperationType === operationType.fourthMenu) { // 点击的为第四级菜单
|
|
|
|
|
|
const curTab = this.getDefaultTab()
|
|
|
|
|
|
if (curTab) {
|
|
|
|
|
|
this.activeTab = curTab.label
|
|
|
|
|
|
this.customTableTitles[0].label = curTab.label
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewCurrentTab', curTab)
|
|
|
|
|
|
}
|
|
|
|
|
|
this.showTabs = true
|
2022-08-24 07:29:40 +08:00
|
|
|
|
} else if (curOperationType === operationType.secondMenu || curOperationType === operationType.mainMenu) { // 点击的为第二级菜单、或者点击菜单进入、
|
|
|
|
|
|
this.list = this.$_.cloneDeep(this.curTable.tabList)
|
2022-08-05 15:46:31 +08:00
|
|
|
|
if (curTab) { // tab切换
|
|
|
|
|
|
this.activeTab = curTab.label
|
|
|
|
|
|
this.customTableTitles[0].label = curTab.label
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewCurrentTab', curTab)
|
|
|
|
|
|
}
|
|
|
|
|
|
this.showTabs = true
|
|
|
|
|
|
} else if (curOperationType === operationType.changeMetric) { // 切换metric
|
|
|
|
|
|
const beforeOperationType = this.$store.getters.getTabOperationBeforeType
|
|
|
|
|
|
if (beforeOperationType === operationType.thirdMenu) {
|
2022-08-26 16:26:31 +08:00
|
|
|
|
this.hideTabs(curTab)
|
2022-08-05 15:46:31 +08:00
|
|
|
|
this.customTableTitles[0].label = curTab.label
|
|
|
|
|
|
this.showTabs = false
|
|
|
|
|
|
}
|
|
|
|
|
|
} else if (curOperationType === operationType.customize) { // customize
|
|
|
|
|
|
const beforeOperationType = this.$store.getters.getTabOperationBeforeType
|
|
|
|
|
|
if (beforeOperationType === operationType.thirdMenu) {
|
2022-08-26 16:26:31 +08:00
|
|
|
|
this.hideTabs(curTab)
|
2022-08-05 15:46:31 +08:00
|
|
|
|
this.customTableTitles[0].label = curTab.label
|
|
|
|
|
|
this.showTabs = false
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.list.forEach(item => {
|
|
|
|
|
|
const tabDom = document.getElementById('tab-' + item.label)
|
|
|
|
|
|
const paneDom = document.getElementById('pane-' + item.label)
|
|
|
|
|
|
if (tabDom) {
|
|
|
|
|
|
tabDom.style.display = ''
|
|
|
|
|
|
}
|
|
|
|
|
|
if (paneDom) {
|
|
|
|
|
|
if (curTab.label === item.label) {
|
|
|
|
|
|
paneDom.style.display = ''
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
this.activeTab = curTab.label
|
|
|
|
|
|
this.customTableTitles[0].label = curTab.label
|
|
|
|
|
|
this.showTabs = true
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const tabList = []
|
|
|
|
|
|
const tableDataTmp = this.chartData.map(item => {
|
|
|
|
|
|
tabList.push(item[curTab.prop])
|
2022-08-24 07:29:40 +08:00
|
|
|
|
const otherData = { tab: item[curTab.prop] }
|
|
|
|
|
|
Object.keys(this.columnNameGroup).forEach(i => {
|
|
|
|
|
|
otherData[i] = item[this.columnNameGroup[i]]
|
|
|
|
|
|
})
|
|
|
|
|
|
return otherData
|
2022-08-05 15:46:31 +08:00
|
|
|
|
})
|
2022-08-24 16:50:18 +08:00
|
|
|
|
|
2022-08-26 16:26:31 +08:00
|
|
|
|
if (!this.chartData || this.chartData.length === 0) {
|
2022-08-24 16:50:18 +08:00
|
|
|
|
this.isNoData = true
|
2022-08-25 15:14:39 +08:00
|
|
|
|
this.toggleLoading(false)
|
2022-08-26 16:26:31 +08:00
|
|
|
|
} else {
|
2022-08-24 16:50:18 +08:00
|
|
|
|
this.isNoData = false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-08-24 07:29:40 +08:00
|
|
|
|
const queryParams = {
|
|
|
|
|
|
startTime: getSecond(this.timeFilter.startTime),
|
|
|
|
|
|
endTime: getSecond(this.timeFilter.endTime)
|
|
|
|
|
|
}
|
2022-08-05 15:46:31 +08:00
|
|
|
|
if (tabList.length > 0) {
|
|
|
|
|
|
const conditionStr = tabList.filter(item => item != '')
|
|
|
|
|
|
queryParams.params = conditionStr.toString()
|
|
|
|
|
|
queryParams.type = curTab.prop
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取上一周期的总流量
|
|
|
|
|
|
let cycleTotalList = []
|
|
|
|
|
|
const condition = this.$store.getters.getQueryCondition
|
|
|
|
|
|
if (condition) {
|
|
|
|
|
|
queryParams.q = condition
|
|
|
|
|
|
}
|
2022-08-24 07:29:40 +08:00
|
|
|
|
|
|
|
|
|
|
const self = this
|
|
|
|
|
|
this.customTableTitles.forEach(tableColumn => {
|
2022-08-24 14:28:54 +08:00
|
|
|
|
if (tableColumn.columnType === tableColumnType.chainRatio && tableColumn.isInMainUrl && tableDataTmp && tableDataTmp.length > 0) {
|
2022-08-24 07:29:40 +08:00
|
|
|
|
get(self.gerCycleUrl(), queryParams).then(response => {
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
cycleTotalList = response.data.result
|
|
|
|
|
|
tableDataTmp.forEach(item => {
|
|
|
|
|
|
const cycle = cycleTotalList.find(i => i[curTab.prop] === item.tab)
|
|
|
|
|
|
let trend = ''// 空:无图标;up:向上的图标;down:向下的图标;noChange:横向箭头图标
|
|
|
|
|
|
let trendPercent = ''
|
|
|
|
|
|
if (cycle) {
|
|
|
|
|
|
const curVal = Number(item[tableColumn.prop])
|
|
|
|
|
|
const preVal = Number(cycle[self.cycleColumnNameGroup[tableColumn.prop]])
|
|
|
|
|
|
if (preVal && preVal != 0) {
|
|
|
|
|
|
const totalDiff = curVal - preVal
|
|
|
|
|
|
const chainRatio = getChainRatio(curVal, preVal)
|
|
|
|
|
|
if (chainRatio === '-') {
|
|
|
|
|
|
trend = ''
|
|
|
|
|
|
trendPercent = ''
|
|
|
|
|
|
} else {
|
|
|
|
|
|
trendPercent = Math.round(Math.abs(chainRatio) * 100)
|
|
|
|
|
|
if (totalDiff > 0) {
|
|
|
|
|
|
trend = 'up'
|
|
|
|
|
|
trendPercent = trendPercent + '%'
|
|
|
|
|
|
} else if (totalDiff < 0) {
|
|
|
|
|
|
trend = 'down'
|
|
|
|
|
|
trendPercent = trendPercent + '%'
|
2022-08-24 11:54:09 +08:00
|
|
|
|
} else if (totalDiff === 0) {
|
2022-08-24 07:29:40 +08:00
|
|
|
|
trend = 'noChange'// 横向图标
|
2022-08-24 11:54:09 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
trend = ''
|
2022-08-24 07:29:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
if (trendPercent === '0%') {
|
|
|
|
|
|
trend = 'noChange'
|
|
|
|
|
|
trendPercent = ''
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-08-19 10:46:24 +08:00
|
|
|
|
}
|
2022-08-09 11:46:48 +08:00
|
|
|
|
}
|
2022-08-24 11:54:09 +08:00
|
|
|
|
item[tableColumn.prop] = [item[tableColumn.prop] ? item[tableColumn.prop] : '', trend, trendPercent]
|
2022-08-24 07:29:40 +08:00
|
|
|
|
})
|
2022-08-05 15:46:31 +08:00
|
|
|
|
}
|
2022-08-24 07:29:40 +08:00
|
|
|
|
}).catch(e => {
|
|
|
|
|
|
console.log(e)
|
|
|
|
|
|
}).finally(e => {
|
|
|
|
|
|
this.tableData = tableDataTmp
|
2022-09-05 16:00:42 +08:00
|
|
|
|
this.tableDataBackup = tableDataTmp
|
2022-08-25 15:14:39 +08:00
|
|
|
|
this.toggleLoading(false)
|
2022-08-24 07:29:40 +08:00
|
|
|
|
// 查询需要单独查询的,且需要展示环比图标,列的当前周期的数据
|
2022-08-24 16:50:18 +08:00
|
|
|
|
let scoreNum = 0
|
2022-08-24 07:29:40 +08:00
|
|
|
|
this.customTableTitles.forEach(tableColumn => {
|
|
|
|
|
|
if (tableColumn.columnType === tableColumnType.chainRatio && !tableColumn.isInMainUrl) {
|
2022-08-24 16:50:18 +08:00
|
|
|
|
scoreNum++
|
2022-08-24 07:29:40 +08:00
|
|
|
|
get(self.gerColumnUrl(tableColumn), queryParams).then(response => {
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
const columnList = response.data.result
|
|
|
|
|
|
self.tableData.forEach((item, i) => {
|
|
|
|
|
|
const data = columnList.find(i => i[curTab.prop] === item.tab)
|
|
|
|
|
|
if (data) {
|
|
|
|
|
|
item[tableColumn.prop] = data[self.columnNameGroup[tableColumn.prop]]
|
|
|
|
|
|
let score = 0
|
|
|
|
|
|
if (data) {
|
|
|
|
|
|
score = computeScore(data, tableColumn.scoreType)
|
|
|
|
|
|
}
|
|
|
|
|
|
item.scoreGroup = item.scoreGroup ? [...item.scoreGroup, score] : [score]
|
2022-08-26 16:26:31 +08:00
|
|
|
|
} else {
|
2022-08-24 16:50:18 +08:00
|
|
|
|
item.scoreGroup = item.scoreGroup ? [...item.scoreGroup, 0] : [0]
|
|
|
|
|
|
}
|
|
|
|
|
|
if (scoreNum >= 5) {
|
|
|
|
|
|
let score = 0
|
|
|
|
|
|
item.scoreGroup.forEach(i => {
|
|
|
|
|
|
score = Number(score) + Number(i)
|
|
|
|
|
|
})
|
|
|
|
|
|
score = Math.ceil(score * 6)
|
|
|
|
|
|
if (score > 6) {
|
|
|
|
|
|
score = 6
|
2022-08-24 07:29:40 +08:00
|
|
|
|
}
|
2022-08-24 16:50:18 +08:00
|
|
|
|
item.score = score || 0
|
2022-08-24 07:29:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
}).catch(e => {
|
|
|
|
|
|
console.log(e)
|
|
|
|
|
|
}).finally(e => {
|
|
|
|
|
|
// 查询需要单独查询的,且需要展示环比图标,列的前一周期的数据
|
2022-08-24 14:28:54 +08:00
|
|
|
|
if (tableColumn.cycle && self.tableData && self.tableData.length > 0) {
|
2022-08-24 07:29:40 +08:00
|
|
|
|
const queryCycleParams = {
|
|
|
|
|
|
...queryParams,
|
|
|
|
|
|
cycle: tableColumn.cycle
|
|
|
|
|
|
}
|
|
|
|
|
|
get(self.gerColumnUrl(tableColumn), queryCycleParams).then(response => {
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
cycleTotalList = response.data.result
|
|
|
|
|
|
self.tableData.forEach(item => {
|
|
|
|
|
|
const cycle = cycleTotalList.find(i => i[curTab.prop] === item.tab)
|
|
|
|
|
|
let trend = ''// 空:无图标;up:向上的图标;down:向下的图标;noChange:横向箭头图标
|
|
|
|
|
|
let trendPercent = ''
|
|
|
|
|
|
if (cycle) {
|
|
|
|
|
|
const curVal = Number(item[tableColumn.prop])
|
|
|
|
|
|
// let preVal = Number(cycle[self.metricUnit])
|
|
|
|
|
|
const preVal = Number(cycle[self.columnNameGroup[tableColumn.prop]])
|
|
|
|
|
|
if (preVal && preVal != 0) {
|
|
|
|
|
|
const totalDiff = curVal - preVal
|
|
|
|
|
|
const chainRatio = getChainRatio(curVal, preVal)
|
|
|
|
|
|
if (chainRatio === '-') {
|
|
|
|
|
|
trend = ''
|
|
|
|
|
|
trendPercent = ''
|
|
|
|
|
|
} else {
|
|
|
|
|
|
trendPercent = Math.round(Math.abs(chainRatio) * 100)
|
|
|
|
|
|
if (totalDiff > 0) {
|
|
|
|
|
|
trend = 'up'
|
|
|
|
|
|
trendPercent = trendPercent + '%'
|
|
|
|
|
|
} else if (totalDiff < 0) {
|
|
|
|
|
|
trend = 'down'
|
|
|
|
|
|
trendPercent = trendPercent + '%'
|
2022-08-24 11:54:09 +08:00
|
|
|
|
} else if (totalDiff === 0) {
|
2022-08-24 07:29:40 +08:00
|
|
|
|
trend = 'noChange'// 横向图标
|
2022-08-24 11:54:09 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
trend = ''
|
2022-08-24 07:29:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
if (trendPercent === '0%') {
|
|
|
|
|
|
trend = 'noChange'
|
|
|
|
|
|
trendPercent = ''
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-08-24 11:54:09 +08:00
|
|
|
|
if (!(item[tableColumn.prop] && item[tableColumn.prop].length >= 3)) {
|
|
|
|
|
|
item[tableColumn.prop] = [item[tableColumn.prop] ? item[tableColumn.prop] : '', trend, trendPercent]
|
|
|
|
|
|
}
|
2022-08-24 07:29:40 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
}).catch(e => {
|
|
|
|
|
|
console.log(e)
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2022-08-05 15:46:31 +08:00
|
|
|
|
})
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
tabChange (index) {
|
2022-08-24 16:50:18 +08:00
|
|
|
|
this.isNoData = false
|
2022-08-30 09:34:38 +08:00
|
|
|
|
// 操作类型设置
|
2022-08-05 15:46:31 +08:00
|
|
|
|
const beforeType = this.$store.getters.getTabOperationBeforeType
|
|
|
|
|
|
if (beforeType != operationType.thirdMenu) {
|
|
|
|
|
|
this.$store.commit('setTabOperationBeforeType', this.$store.getters.getTabOperationType)
|
|
|
|
|
|
}
|
|
|
|
|
|
this.$store.commit('setTabOperationType', operationType.customize)
|
2022-08-30 09:34:38 +08:00
|
|
|
|
// 获得操作tab和当前选中的所有tab
|
2022-08-05 15:46:31 +08:00
|
|
|
|
const handleTab = this.list[index]
|
|
|
|
|
|
const tabList = this.list.filter(item => item.checked === true)
|
|
|
|
|
|
const defaultTab = tabList.length > 0 ? tabList[0] : {}
|
2022-08-30 09:34:38 +08:00
|
|
|
|
// 当前操作之后,只有1个tab被选中,则这一个不允许取消选中
|
2022-08-30 16:45:13 +08:00
|
|
|
|
const columnName = this.$store.getters.getBreadcrumbColumnName
|
|
|
|
|
|
const columnValue = this.$store.getters.getBreadcrumbColumnValue
|
2022-08-30 09:34:38 +08:00
|
|
|
|
if (tabList.length === 1) {
|
2022-08-05 15:46:31 +08:00
|
|
|
|
defaultTab.disabled = true
|
|
|
|
|
|
} else if (tabList.length > 1) {
|
|
|
|
|
|
this.list.forEach(item => {
|
|
|
|
|
|
item.disabled = false
|
2022-08-30 16:45:13 +08:00
|
|
|
|
if (columnValue) {
|
|
|
|
|
|
if (item.label === columnName) {
|
|
|
|
|
|
item.disabled = true
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-08-05 15:46:31 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-08-30 09:34:38 +08:00
|
|
|
|
// 如果取消tab,则如果取消的是当前选中的tab,则当前tab就需要修改为第一个默认的tab,否则不用
|
|
|
|
|
|
const curTab = this.getCurTab()
|
|
|
|
|
|
if (!handleTab.checked && handleTab.label === curTab.label) {
|
|
|
|
|
|
this.showRecordNum = 10
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewCurrentTab', tabList[0])
|
|
|
|
|
|
let queryParams = {
|
2022-08-05 15:46:31 +08:00
|
|
|
|
orderBy: this.orderBy,
|
2022-08-26 16:26:31 +08:00
|
|
|
|
limit: networkDefaultLimit,
|
2022-08-30 09:34:38 +08:00
|
|
|
|
type: tabList[0].prop
|
2022-08-05 15:46:31 +08:00
|
|
|
|
}
|
2022-08-30 09:34:38 +08:00
|
|
|
|
const condition = this.$store.getters.getQueryCondition
|
|
|
|
|
|
if (condition) {
|
|
|
|
|
|
queryParams = {
|
|
|
|
|
|
orderBy: this.orderBy,
|
|
|
|
|
|
limit: networkDefaultLimit,
|
|
|
|
|
|
type: tabList[0].prop,
|
|
|
|
|
|
q: condition
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
this.$emit('getChartData', this.getCurUrl(), queryParams)
|
2022-08-05 15:46:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
handleTabValue (columnName, columnValue) {
|
|
|
|
|
|
const oldCurTab = this.$store.getters.getNetworkOverviewBeforeTab
|
|
|
|
|
|
const tabGroup = this.list.filter(item => item.label === columnName)
|
|
|
|
|
|
if (tabGroup && tabGroup.length > 0) {
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewBeforeTab', tabGroup[0])
|
|
|
|
|
|
}
|
|
|
|
|
|
this.$store.commit('setTabOperationBeforeType', this.$store.getters.getTabOperationType)
|
|
|
|
|
|
this.$store.commit('setTabOperationType', operationType.fourthMenu)
|
|
|
|
|
|
|
|
|
|
|
|
const queryCondition = []
|
|
|
|
|
|
const searchProps = tabGroup[0].dillDownProp
|
2022-08-24 11:54:09 +08:00
|
|
|
|
if (tabGroup[0].prop === 'protocolPort') {
|
|
|
|
|
|
const valueGroup = columnValue.split(':')
|
|
|
|
|
|
if (valueGroup) {
|
|
|
|
|
|
queryCondition.push("common_l7_protocol='" + valueGroup[0] + "'")
|
|
|
|
|
|
queryCondition.push('common_server_port=' + valueGroup[1])
|
|
|
|
|
|
}
|
|
|
|
|
|
this.$store.commit('setQueryCondition', queryCondition.join(' AND '))
|
|
|
|
|
|
} else {
|
|
|
|
|
|
searchProps.forEach(item => {
|
|
|
|
|
|
queryCondition.push(item + "='" + columnValue + "'")
|
|
|
|
|
|
})
|
|
|
|
|
|
this.$store.commit('setQueryCondition', queryCondition.join(' OR '))
|
|
|
|
|
|
}
|
2022-08-05 15:46:31 +08:00
|
|
|
|
/*
|
2022-08-08 20:54:35 +08:00
|
|
|
|
* 点击表格第一列后
|
|
|
|
|
|
1.顶部面包屑增加两级,分别是列名和值;
|
|
|
|
|
|
2.panel标题变更为值;
|
|
|
|
|
|
3.当前panel只保留折线图和表格;
|
|
|
|
|
|
4.面包屑上的值可点击下拉,切换内容;
|
|
|
|
|
|
* */
|
2022-08-05 15:46:31 +08:00
|
|
|
|
this.$store.getters.menuList.forEach(menu => {
|
|
|
|
|
|
if (this.$_.isEmpty(menu.children) && menu.route) {
|
|
|
|
|
|
if (this.$route.path === menu.route) {
|
|
|
|
|
|
menu.columnName = columnName
|
|
|
|
|
|
menu.columnValue = columnValue
|
|
|
|
|
|
this.$store.commit('setPanelName', columnValue)
|
|
|
|
|
|
this.$store.commit('setBreadcrumbColumnName', columnName)
|
2022-08-24 07:29:40 +08:00
|
|
|
|
this.$store.commit('setDimensionType', tabGroup[0] ? tabGroup[0].prop : '')
|
2022-08-05 15:46:31 +08:00
|
|
|
|
this.$store.commit('setBreadcrumbColumnValue', columnValue)
|
|
|
|
|
|
}
|
|
|
|
|
|
} else if (!this.$_.isEmpty(menu.children)) {
|
|
|
|
|
|
menu.children.forEach(child => {
|
|
|
|
|
|
if (this.$route.path === child.route) {
|
|
|
|
|
|
child.columnName = columnName
|
|
|
|
|
|
child.columnValue = columnValue
|
|
|
|
|
|
this.$store.commit('setPanelName', columnValue)
|
|
|
|
|
|
this.$store.commit('setBreadcrumbColumnName', columnName)
|
2022-08-24 07:29:40 +08:00
|
|
|
|
this.$store.commit('setDimensionType', tabGroup[0] ? tabGroup[0].prop : '')
|
2022-08-05 15:46:31 +08:00
|
|
|
|
this.$store.commit('setBreadcrumbColumnValue', columnValue)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2022-08-19 10:46:24 +08:00
|
|
|
|
let toPanel = null
|
2022-08-05 15:46:31 +08:00
|
|
|
|
this.list.forEach((item, index) => {
|
|
|
|
|
|
if (item.label === columnName) {
|
|
|
|
|
|
item.checked = false
|
2022-08-19 10:46:24 +08:00
|
|
|
|
toPanel = item.panelId
|
2022-08-05 15:46:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
if (oldCurTab && (item.label === oldCurTab.label)) {
|
|
|
|
|
|
item.checked = true
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewTabList', this.list)
|
|
|
|
|
|
this.handleSearchParams(columnValue)
|
|
|
|
|
|
|
|
|
|
|
|
const tabObjGroup = this.list.filter(item => item.checked)
|
|
|
|
|
|
if (tabObjGroup && tabObjGroup.length > 0) {
|
|
|
|
|
|
const curTab = tabObjGroup[0]
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewCurrentTab', curTab)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 如果面包屑的columnValue有值,则不更新valueList
|
|
|
|
|
|
const valueList = []
|
2022-08-31 21:30:37 +08:00
|
|
|
|
this.tableData.forEach(item => {
|
2022-08-05 15:46:31 +08:00
|
|
|
|
valueList.push(item.tab)
|
|
|
|
|
|
})
|
|
|
|
|
|
this.$store.commit('setBreadcrumbColumnValueList', valueList)
|
|
|
|
|
|
this.$router.push({
|
2022-08-24 07:29:40 +08:00
|
|
|
|
params: {
|
|
|
|
|
|
thirdPanel: this.curTable.panelIdOfThirdMenu,
|
|
|
|
|
|
fourthPanel: toPanel
|
2022-08-05 15:46:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
handleSearchParams (columnValue) {
|
|
|
|
|
|
const queryCondition = []
|
|
|
|
|
|
const curTab = this.getCurTab()
|
|
|
|
|
|
const searchProps = curTab.dillDownProp
|
2022-08-24 11:54:09 +08:00
|
|
|
|
if (curTab.prop === 'protocolPort') {
|
|
|
|
|
|
const valueGroup = columnValue.split(':')
|
|
|
|
|
|
if (valueGroup) {
|
|
|
|
|
|
queryCondition.push("common_l7_protocol='" + valueGroup[0] + "'")
|
|
|
|
|
|
queryCondition.push('common_server_port=' + valueGroup[1])
|
|
|
|
|
|
}
|
|
|
|
|
|
this.$store.commit('setQueryCondition', queryCondition.join(' AND '))
|
|
|
|
|
|
} else {
|
|
|
|
|
|
searchProps.forEach(item => {
|
|
|
|
|
|
queryCondition.push(item + "='" + columnValue + "'")
|
|
|
|
|
|
})
|
|
|
|
|
|
this.$store.commit('setQueryCondition', queryCondition.join(' OR '))
|
|
|
|
|
|
}
|
2022-07-20 19:47:53 +08:00
|
|
|
|
},
|
2022-07-22 18:22:00 +08:00
|
|
|
|
metricChange () {
|
|
|
|
|
|
},
|
2022-07-20 19:47:53 +08:00
|
|
|
|
dragstart (index) {
|
|
|
|
|
|
this.dragIndex = index
|
|
|
|
|
|
},
|
|
|
|
|
|
dragenter (e, index) {
|
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
|
if (this.dragIndex !== index) {
|
|
|
|
|
|
const moving = this.list[this.dragIndex]
|
|
|
|
|
|
this.list.splice(this.dragIndex, 1)
|
|
|
|
|
|
this.list.splice(index, 0, moving)
|
|
|
|
|
|
this.dragIndex = index
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
dragover (e, index) {
|
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
|
},
|
2022-07-22 18:22:00 +08:00
|
|
|
|
dragMetricStart (index) {
|
|
|
|
|
|
this.dragMetricIndex = index
|
|
|
|
|
|
},
|
|
|
|
|
|
dragMetricEnter (e, index) {
|
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
|
if (this.dragMetricIndex !== index) {
|
|
|
|
|
|
const moving = this.customTableTitles[this.dragMetricIndex]
|
|
|
|
|
|
this.customTableTitles.splice(this.dragMetricIndex, 1)
|
|
|
|
|
|
this.customTableTitles.splice(index, 0, moving)
|
|
|
|
|
|
this.dragMetricIndex = index
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
dragMetricOver (e, index) {
|
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
|
},
|
2022-07-12 17:17:38 +08:00
|
|
|
|
handleClick (tab) {
|
2022-08-05 15:46:31 +08:00
|
|
|
|
this.tableData = []
|
2022-09-05 16:00:42 +08:00
|
|
|
|
this.tableDataBackup = []
|
2022-08-30 09:34:38 +08:00
|
|
|
|
this.showRecordNum = 10
|
2022-08-05 15:46:31 +08:00
|
|
|
|
this.$store.commit('setTabOperationBeforeType', this.$store.getters.getTabOperationType)
|
|
|
|
|
|
this.$store.commit('setTabOperationType', operationType.changeTab)
|
|
|
|
|
|
this.customTableTitles[0].label = tab.paneName
|
|
|
|
|
|
|
|
|
|
|
|
const tabObjGroup = this.list.filter(item => item.label == tab.paneName)
|
|
|
|
|
|
if (tabObjGroup && tabObjGroup.length > 0) {
|
|
|
|
|
|
const curTab = tabObjGroup[0]
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewCurrentTab', curTab)
|
|
|
|
|
|
this.tab = curTab.prop
|
|
|
|
|
|
|
|
|
|
|
|
let queryParams = {
|
|
|
|
|
|
orderBy: this.orderBy,
|
2022-08-26 16:26:31 +08:00
|
|
|
|
limit: networkDefaultLimit,
|
2022-08-05 15:46:31 +08:00
|
|
|
|
type: curTab.prop
|
2022-07-22 18:22:00 +08:00
|
|
|
|
}
|
2022-08-05 15:46:31 +08:00
|
|
|
|
const condition = this.$store.getters.getQueryCondition
|
|
|
|
|
|
if (condition) {
|
|
|
|
|
|
queryParams = {
|
|
|
|
|
|
orderBy: this.orderBy,
|
2022-08-26 16:26:31 +08:00
|
|
|
|
limit: networkDefaultLimit,
|
2022-08-05 15:46:31 +08:00
|
|
|
|
type: curTab.prop,
|
|
|
|
|
|
q: condition
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-08-25 15:14:39 +08:00
|
|
|
|
this.tableData = []
|
2022-09-05 16:00:42 +08:00
|
|
|
|
this.tableDataBackup = []
|
2022-08-22 09:57:40 +08:00
|
|
|
|
this.toggleLoading(true)
|
2022-08-24 11:54:09 +08:00
|
|
|
|
this.$emit('getChartData', this.getCurUrl(), queryParams)
|
2022-08-05 15:46:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
getCurUrl () {
|
|
|
|
|
|
const condition = this.$store.getters.getQueryCondition
|
|
|
|
|
|
if (condition) {
|
2022-08-19 10:46:24 +08:00
|
|
|
|
return this.networkSearchUrl.drilldownCurUrl
|
2022-08-05 15:46:31 +08:00
|
|
|
|
} else {
|
2022-08-19 10:46:24 +08:00
|
|
|
|
return this.networkSearchUrl.curUrl
|
2022-08-05 15:46:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
2022-08-24 07:29:40 +08:00
|
|
|
|
gerCycleUrl () {
|
|
|
|
|
|
const condition = this.$store.getters.getQueryCondition
|
|
|
|
|
|
if (condition) {
|
|
|
|
|
|
return this.networkSearchUrl.drilldownCycleUrl
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return this.networkSearchUrl.cycleUrl
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
gerColumnUrl (tableColumn) {
|
|
|
|
|
|
const condition = this.$store.getters.getQueryCondition
|
|
|
|
|
|
if (condition) {
|
|
|
|
|
|
return tableColumn.dillDownCycleDataUrl
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return tableColumn.cycleDataUrl
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2022-08-05 15:46:31 +08:00
|
|
|
|
handleQueryParams (extraParams) {
|
2022-08-25 15:14:39 +08:00
|
|
|
|
this.isNoData = false
|
|
|
|
|
|
this.tableData = []
|
2022-09-05 16:00:42 +08:00
|
|
|
|
this.tableDataBackup = []
|
2022-08-24 16:50:18 +08:00
|
|
|
|
this.toggleLoading(true)
|
2022-08-05 15:46:31 +08:00
|
|
|
|
let queryType = ''
|
|
|
|
|
|
const name = this.$store.getters.getBreadcrumbColumnName
|
|
|
|
|
|
let tabList = this.$store.getters.getNetworkOverviewTabList
|
2022-08-24 14:28:54 +08:00
|
|
|
|
if (!tabList || tabList.length === 0) {
|
2022-08-19 10:46:24 +08:00
|
|
|
|
tabList = this.$_.cloneDeep(this.networkTabList)
|
2022-08-05 15:46:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const curOperationType = this.$store.getters.getTabOperationType
|
|
|
|
|
|
if (curOperationType === operationType.fourthMenu) { // 点击的为第四级菜单
|
|
|
|
|
|
const tabCheckedGroup = []
|
|
|
|
|
|
tabList.forEach(item => {
|
|
|
|
|
|
if (item.checked) {
|
|
|
|
|
|
tabCheckedGroup.push(item)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
if (tabCheckedGroup && tabCheckedGroup.length > 0) {
|
|
|
|
|
|
queryType = tabCheckedGroup[0].prop
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewCurrentTab', tabCheckedGroup[0])
|
|
|
|
|
|
this.customTableTitles[0].label = tabCheckedGroup[0].label
|
|
|
|
|
|
}
|
|
|
|
|
|
} else if (curOperationType === operationType.thirdMenu) { // 点击的为第三级菜单
|
2022-08-19 10:46:24 +08:00
|
|
|
|
const networkTabList = []
|
2022-08-05 15:46:31 +08:00
|
|
|
|
tabList.forEach(item => {
|
|
|
|
|
|
if (this.$t(item.label) === name) {
|
|
|
|
|
|
item.checked = true
|
|
|
|
|
|
}
|
2022-08-19 10:46:24 +08:00
|
|
|
|
networkTabList.push(item)
|
2022-08-05 15:46:31 +08:00
|
|
|
|
})
|
2022-08-19 10:46:24 +08:00
|
|
|
|
this.$store.commit('setNetworkOverviewTabList', networkTabList)
|
2022-08-05 15:46:31 +08:00
|
|
|
|
|
|
|
|
|
|
const breadcrumbColumnNameUrl = tabList.filter(item => this.$t(item.label) === name)
|
|
|
|
|
|
if (breadcrumbColumnNameUrl && breadcrumbColumnNameUrl.length > 0) {
|
|
|
|
|
|
queryType = breadcrumbColumnNameUrl[0].prop
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewCurrentTab', breadcrumbColumnNameUrl[0])
|
|
|
|
|
|
this.customTableTitles[0].label = breadcrumbColumnNameUrl[0].label
|
|
|
|
|
|
}
|
|
|
|
|
|
} else if (curOperationType === operationType.changeTab) { // 切换tab
|
|
|
|
|
|
let curTab = this.$store.getters.getNetworkOverviewCurrentTab
|
|
|
|
|
|
if (!curTab) {
|
|
|
|
|
|
const list = this.$store.getters.getNetworkOverviewTabList
|
|
|
|
|
|
const tabObjGroup = list.filter(item => item.checked)
|
|
|
|
|
|
if (tabObjGroup && tabObjGroup.length > 0) {
|
|
|
|
|
|
curTab = tabObjGroup[0]
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if (curTab) {
|
|
|
|
|
|
queryType = curTab.prop
|
|
|
|
|
|
this.customTableTitles[0].label = curTab.label
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewCurrentTab', curTab)
|
|
|
|
|
|
}
|
2022-08-24 07:29:40 +08:00
|
|
|
|
} else if (curOperationType === operationType.secondMenu || curOperationType === operationType.mainMenu) { // 点击第二级菜单,点击菜单
|
|
|
|
|
|
this.list = this.$_.cloneDeep(this.curTable.tabList)
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewTabList', this.list)
|
|
|
|
|
|
const tabObjGroup = this.list.filter(item => item.checked)
|
2022-08-05 15:46:31 +08:00
|
|
|
|
if (tabObjGroup && tabObjGroup.length > 0) {
|
|
|
|
|
|
const curTab = tabObjGroup[0]
|
|
|
|
|
|
queryType = curTab.prop
|
|
|
|
|
|
this.customTableTitles[0].label = curTab.label
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewCurrentTab', curTab)
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
let curTab = this.$store.getters.getNetworkOverviewCurrentTab
|
|
|
|
|
|
if (!curTab) {
|
|
|
|
|
|
let list = this.$store.getters.getNetworkOverviewTabList
|
2022-08-24 14:28:54 +08:00
|
|
|
|
if (!list || list.length === 0) {
|
2022-08-19 10:46:24 +08:00
|
|
|
|
list = this.$_.cloneDeep(this.networkTabList)
|
2022-08-05 15:46:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
const tabObjGroup = list.filter(item => item.checked)
|
|
|
|
|
|
if (tabObjGroup && tabObjGroup.length > 0) {
|
|
|
|
|
|
curTab = tabObjGroup[0]
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if (curTab) {
|
|
|
|
|
|
queryType = curTab.prop
|
|
|
|
|
|
this.customTableTitles[0].label = curTab.label
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewCurrentTab', curTab)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (JSON.stringify(extraParams) === '{}') {
|
|
|
|
|
|
extraParams = {
|
2022-08-19 10:46:24 +08:00
|
|
|
|
type: queryType || this.networkTabList[0].prop,
|
2022-08-05 15:46:31 +08:00
|
|
|
|
orderBy: this.orderBy ? this.orderBy : 'bytesTotal',
|
2022-08-26 16:26:31 +08:00
|
|
|
|
limit: networkDefaultLimit
|
2022-08-05 15:46:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
const condition = this.$store.getters.getQueryCondition
|
|
|
|
|
|
if (condition) {
|
|
|
|
|
|
extraParams.q = condition
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return extraParams
|
|
|
|
|
|
},
|
2022-07-22 18:22:00 +08:00
|
|
|
|
handleCustomizeClick (tab) {
|
|
|
|
|
|
this.activeCustomize = tab.paneName
|
|
|
|
|
|
},
|
2022-07-12 17:17:38 +08:00
|
|
|
|
tableCellStyle ({ row, column, rowIndex, columnIndex }) {
|
2022-07-14 17:46:06 +08:00
|
|
|
|
let style = 'border-right:0px;font-size:12px;padding:7px 0 !important;border-bottom: 1px solid #ECECEC;'
|
2022-07-12 17:17:38 +08:00
|
|
|
|
if (rowIndex === this.tableData.length - 1) {
|
2022-08-05 15:46:31 +08:00
|
|
|
|
// style = style + 'border-bottom:0px !important;'
|
2022-07-12 17:17:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
if (columnIndex === 0) {
|
2022-09-01 11:21:53 +08:00
|
|
|
|
style = style + 'color:#046ECA;text-align:left;'
|
2022-07-12 17:17:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
return style
|
|
|
|
|
|
},
|
|
|
|
|
|
tableHeaderCellStyle ({ row, column, rowIndex, columnIndex }) {
|
2022-09-05 16:00:42 +08:00
|
|
|
|
if (columnIndex === 0) {
|
2022-09-01 11:21:53 +08:00
|
|
|
|
return 'text-align:left;border-right:0px;font-size:12px;font-weight:500;padding:4px 0 !important;border-bottom: 1px solid #E2E5EC;'
|
2022-09-05 16:00:42 +08:00
|
|
|
|
} else {
|
2022-09-01 11:21:53 +08:00
|
|
|
|
return 'border-right:0px;font-size:12px;font-weight:500;padding:4px 0 !important;border-bottom: 1px solid #E2E5EC;'
|
|
|
|
|
|
}
|
2022-08-05 15:46:31 +08:00
|
|
|
|
},
|
|
|
|
|
|
getCurTab () {
|
|
|
|
|
|
let curTab = this.$store.getters.getNetworkOverviewCurrentTab
|
|
|
|
|
|
if (!curTab) {
|
|
|
|
|
|
const tabObjGroup = this.list.filter(item => item.checked)
|
|
|
|
|
|
if (tabObjGroup && tabObjGroup.length > 0) {
|
|
|
|
|
|
curTab = tabObjGroup[0]
|
|
|
|
|
|
} else {
|
2022-08-19 10:46:24 +08:00
|
|
|
|
curTab = this.networkTabList[0]
|
2022-08-05 15:46:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewCurrentTab', curTab)
|
|
|
|
|
|
}
|
|
|
|
|
|
return curTab
|
2022-07-12 17:17:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
2022-07-20 19:47:53 +08:00
|
|
|
|
mounted () {
|
2022-08-24 07:29:40 +08:00
|
|
|
|
// 当前表格相关数据初始化
|
|
|
|
|
|
this.tableType = this.chart.params ? this.chart.params.name : 'networkOverview'
|
2022-08-24 16:50:18 +08:00
|
|
|
|
this.curTable = this.networkTable[this.tableType] ? this.networkTable[this.tableType] : this.networkTable.networkOverview
|
2022-08-24 07:29:40 +08:00
|
|
|
|
this.customTableTitles = this.$_.cloneDeep(this.curTable.column)
|
2022-08-19 10:46:24 +08:00
|
|
|
|
this.list = this.$_.cloneDeep(this.curTable.tabList)
|
|
|
|
|
|
this.networkTabList = this.curTable.tabList
|
|
|
|
|
|
this.activeTab = this.networkTabList[0].label
|
|
|
|
|
|
this.activeCustomize = ref('tabs')
|
|
|
|
|
|
this.networkSearchUrl = this.curTable.url
|
2022-08-24 07:29:40 +08:00
|
|
|
|
this.columnNameGroup = this.curTable.bytesColumnNameGroup
|
|
|
|
|
|
this.cycleColumnNameGroup = this.curTable.bytesCycleColumnNameGroup
|
2022-08-05 16:42:01 +08:00
|
|
|
|
|
2022-08-05 15:46:31 +08:00
|
|
|
|
if (this.$store.getters.getNetworkOverviewTabList.length > 0) {
|
|
|
|
|
|
this.list = this.$store.getters.getNetworkOverviewTabList
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.$store.commit('setNetworkOverviewTabList', this.list)
|
|
|
|
|
|
}
|
2022-08-30 16:45:13 +08:00
|
|
|
|
const tabList = this.list.filter(item => item.checked === true)
|
|
|
|
|
|
const columnName = this.$store.getters.getBreadcrumbColumnName
|
|
|
|
|
|
const columnValue = this.$store.getters.getBreadcrumbColumnValue
|
|
|
|
|
|
if (tabList.length === 0) { // 没有选中任何tab时,默认选中第一个
|
|
|
|
|
|
this.list[0].checked = true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-08-05 15:46:31 +08:00
|
|
|
|
const curOperationType = this.$store.getters.getTabOperationType
|
|
|
|
|
|
if (curOperationType === operationType.thirdMenu) { // 点击的为第三级菜单
|
|
|
|
|
|
const curTab = this.getCurTab()
|
|
|
|
|
|
this.customTableTitles[0].label = curTab.label
|
|
|
|
|
|
this.showTabs = false
|
|
|
|
|
|
this.$nextTick(() => {
|
2022-08-26 16:26:31 +08:00
|
|
|
|
this.hideTabs(curTab)
|
2022-08-05 15:46:31 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
2022-08-24 18:10:53 +08:00
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
this.hasMetricSearch = this.curTable.hasMetricSearch
|
|
|
|
|
|
}, 250)
|
|
|
|
|
|
})
|
2022-07-20 19:47:53 +08:00
|
|
|
|
},
|
2022-08-25 15:14:39 +08:00
|
|
|
|
setup (props) {
|
|
|
|
|
|
},
|
2022-08-24 07:29:40 +08:00
|
|
|
|
unmounted () {
|
2022-08-25 15:14:39 +08:00
|
|
|
|
this.isNoData = false
|
2022-08-24 07:29:40 +08:00
|
|
|
|
this.$store.commit('setNetworkOverviewTabList', this.list)// 保存状态
|
2022-07-12 17:17:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|