diff --git a/src/views/perfManage/kpiOverView/index.vue b/src/views/perfManage/kpiOverView/index.vue index e12f08a7..a526bdb2 100644 --- a/src/views/perfManage/kpiOverView/index.vue +++ b/src/views/perfManage/kpiOverView/index.vue @@ -43,7 +43,7 @@ interface ChartDataItem { const tableLoading = ref(false); const rangeLoading = ref(false); //网元类型定义 -const ALL_NE_TYPES = ['AMF', 'UPF', 'IMS'] as const; +const ALL_NE_TYPES = ['AMF', 'UPF', 'IMS','MME'] as const; type NeType = (typeof ALL_NE_TYPES)[number]; echarts.use([ @@ -143,6 +143,7 @@ const TARGET_KPI_IDS: Record = { AMF: ['AMF.02', 'AMF.03'], UPF: ['UPF.04', 'UPF.05'], IMS: ['SCSCF.03', 'SCSCF.04', 'SCSCF.05', 'SCSCF.06', 'SCSCF.07', 'SCSCF.08'], + MME: ['MME.A.01','MME.A.02'], // AMF: ['AMF.02', 'AMF.03', 'AMF.A.07', 'AMF.A.08'], // SMF: ['SMF.02', 'SMF.03', 'SMF.04', 'SMF.05'], @@ -163,6 +164,8 @@ const KPI_TITLE: Record = { 'SCSCF.06': 'MO Call Attempt', 'SCSCF.07': 'MT Call Success', 'SCSCF.08': 'MT Call Attempt', + 'MME.A.01':'MME Attach Requests', + 'MME.A.02':'MME Attach Successes', }; // 添加网元信息 store @@ -173,6 +176,7 @@ const neList = ref>({ AMF: [], UPF: [], IMS: [], + MME: [], }); // 添加获取网元列表的函数