feat: 开站参数添加ausf是否存在标志

This commit is contained in:
TsMask
2025-06-17 11:16:16 +08:00
parent 38c0e3d08d
commit d75a2a1651
2 changed files with 4 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ const props = defineProps({
type: Object,
default: () => ({
amf: false,
ausf: false,
upf: false,
ims: false,
mme: false,

View File

@@ -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;