fix: 修改链路部分字段名

This commit is contained in:
chenjinsong
2023-08-29 15:43:29 +08:00
parent db13ef65e8
commit 96955d4e45

View File

@@ -209,10 +209,10 @@ export default {
hit.inBitsRate += d.inBitsRate hit.inBitsRate += d.inBitsRate
if (info.direction === 'egress') { if (info.direction === 'egress') {
hit.egressBandwidth = info.bandwidth hit.egressBandwidth = info.bandwidth
hit.egressLinkId = d.linkId hit.outLinkId = d.linkId
} else if (info.direction === 'ingress') { } else if (info.direction === 'ingress') {
hit.ingressBandwidth = info.bandwidth hit.ingressBandwidth = info.bandwidth
hit.ingressLinkId = d.linkId hit.inLinkId = d.linkId
} }
} else { } else {
const hit = { const hit = {
@@ -222,10 +222,10 @@ export default {
} }
if (info.direction === 'egress') { if (info.direction === 'egress') {
hit.egressBandwidth = info.bandwidth hit.egressBandwidth = info.bandwidth
hit.egressLinkId = d.linkId hit.outLinkId = d.linkId
} else if (info.direction === 'ingress') { } else if (info.direction === 'ingress') {
hit.ingressBandwidth = info.bandwidth hit.ingressBandwidth = info.bandwidth
hit.ingressLinkId = d.linkId hit.inLinkId = d.linkId
} }
data.push(hit) data.push(hit)
} }
@@ -368,7 +368,7 @@ export default {
return width return width
}, },
drillLinkId (item) { drillLinkId (item) {
const queryCondition = `common_egress_link_id = ${item.egressLinkId} or common_ingress_link_id = ${item.ingressLinkId}` const queryCondition = `common_out_link_id = ${item.outLinkId} or common_in_link_id = ${item.inLinkId}`
this.$router.push({ this.$router.push({
query: { query: {
...this.$route.query, ...this.$route.query,