From d75a2a16515feab5dd529bc36b4f0a292783f5d3 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Tue, 17 Jun 2025 11:16:16 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=BC=80=E7=AB=99=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0ausf=E6=98=AF=E5=90=A6=E5=AD=98=E5=9C=A8?= =?UTF-8?q?=E6=A0=87=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ne/neQuickSetup/components/Para5GForm.vue | 1 + src/views/system/quick-start/components/NeInfoConfigPara5G.vue | 3 +++ 2 files changed, 4 insertions(+) diff --git a/src/views/ne/neQuickSetup/components/Para5GForm.vue b/src/views/ne/neQuickSetup/components/Para5GForm.vue index 84032680..1d3784b6 100644 --- a/src/views/ne/neQuickSetup/components/Para5GForm.vue +++ b/src/views/ne/neQuickSetup/components/Para5GForm.vue @@ -14,6 +14,7 @@ const props = defineProps({ type: Object, default: () => ({ amf: false, + ausf: false, upf: false, ims: false, mme: false, diff --git a/src/views/system/quick-start/components/NeInfoConfigPara5G.vue b/src/views/system/quick-start/components/NeInfoConfigPara5G.vue index caa88525..6fbf7d21 100644 --- a/src/views/system/quick-start/components/NeInfoConfigPara5G.vue +++ b/src/views/system/quick-start/components/NeInfoConfigPara5G.vue @@ -26,6 +26,7 @@ type StateType = { /**根据网元显示配置项 */ hasNE: { amf: boolean; + ausf: boolean; upf: boolean; ims: boolean; mme: boolean; @@ -42,6 +43,7 @@ let state: StateType = reactive({ omcInfo: {}, hasNE: { amf: false, + ausf: false, upf: false, ims: false, mme: false, @@ -110,6 +112,7 @@ function fnGetList() { break; case 'AUSF': state.from.sbi.ausf_ip = item.ip; + state.hasNE.ausf = true; break; case 'UDM': state.from.sbi.udm_ip = item.ip;