diff --git a/src/i18n/locales/en-US.ts b/src/i18n/locales/en-US.ts index bbad2dec..b1a321ca 100644 --- a/src/i18n/locales/en-US.ts +++ b/src/i18n/locales/en-US.ts @@ -814,7 +814,7 @@ export default { exportSure:'Confirm whether to export all statistical data', exportEmpty: "Export data is empty", showChartSelected: "Show All", - realTimeData: "Real Time 5s Data", + realTimeData: "Real Time Data", }, customTarget:{ kpiId:' Custom Indicator', diff --git a/src/i18n/locales/zh-CN.ts b/src/i18n/locales/zh-CN.ts index a7cef126..40bbfc5f 100644 --- a/src/i18n/locales/zh-CN.ts +++ b/src/i18n/locales/zh-CN.ts @@ -814,7 +814,7 @@ export default { exportSure:'确认是否导出全部统计数据', exportEmpty: "导出数据为空", showChartSelected: "显示全部", - realTimeData: "实时5s数据", + realTimeData: "实时数据", }, customTarget:{ kpiId:'自定义指标项', diff --git a/src/views/perfManage/goldTarget/index.vue b/src/views/perfManage/goldTarget/index.vue index ecfb17b0..e3e78669 100644 --- a/src/views/perfManage/goldTarget/index.vue +++ b/src/views/perfManage/goldTarget/index.vue @@ -566,6 +566,7 @@ function wsMessage(res: Record) { } onMounted(() => { + // 目前支持的 AMF AUSF MME MOCNGW NSSF SMF UDM UPF // 获取网元网元列表 neInfoStore.fnNelist().then(res => { if (res.code === RESULT_CODE_SUCCESS && Array.isArray(res.data)) { @@ -573,7 +574,15 @@ onMounted(() => { // 过滤不可用的网元 neCascaderOptions.value = neInfoStore.getNeCascaderOptions.filter( (item: any) => { - return !['OMC'].includes(item.value); + return ![ + 'OMC', + 'PCF', + 'NSSF', + 'NEF', + 'NRF', + 'LMF', + 'N3IWF', + ].includes(item.value); } ); if (neCascaderOptions.value.length === 0) {