fix: 看板拓扑点击改变资源显示
This commit is contained in:
26
src/views/dashboard/overview/hooks/useTopology.ts
Normal file
26
src/views/dashboard/overview/hooks/useTopology.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
import { computed, reactive, ref } from 'vue';
|
||||
|
||||
/**图状态 */
|
||||
export const graphState = reactive<Record<string, any>>({
|
||||
/**当前图组名 */
|
||||
group: '5GC System Architecture2',
|
||||
/**图数据 */
|
||||
data: {
|
||||
combos: [],
|
||||
edges: [],
|
||||
nodes: [],
|
||||
},
|
||||
});
|
||||
|
||||
/**图点击选择 */
|
||||
export const graphNodeClickID = ref<string>('UPF');
|
||||
|
||||
/**图节点网元信息状态 */
|
||||
export const graphNodeState = computed(() =>
|
||||
graphState.data.nodes.map((item: any) => ({
|
||||
id: item.id,
|
||||
label: item.label,
|
||||
neInfo: item.neInfo,
|
||||
neState: item.neState,
|
||||
}))
|
||||
);
|
||||
Reference in New Issue
Block a user