fix: 修改j网元信息接口

This commit is contained in:
TsMask
2024-02-29 20:55:29 +08:00
parent c2cc81fccf
commit 7dedbb927c
6 changed files with 53 additions and 39 deletions

View File

@@ -1,7 +1,7 @@
<script setup lang="ts">
import { onMounted, ref, onBeforeUnmount } from 'vue';
import { onMounted, ref } from 'vue';
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
import { listNe } from '@/api/ne/ne';
import { listAllNeInfo } from '@/api/ne/neInfo';
import { message } from 'ant-design-vue/lib';
import { getGraphData } from '@/api/monitor/topology';
import { Graph, GraphData, Tooltip } from '@antv/g6';
@@ -149,7 +149,7 @@ function handleRanderGraph(
function fnGraphDataLoad(reload: boolean = false) {
Promise.all([
getGraphData(graphState.group),
listNe({
listAllNeInfo({
bandStatus: false,
}),
])