fix: 网元特定排序添加SMSC

This commit is contained in:
TsMask
2024-05-14 17:24:50 +08:00
parent 7278e24dce
commit 6d5b9f417c
6 changed files with 29 additions and 43 deletions

View File

@@ -65,6 +65,8 @@ let state: StateType = reactive({
nssf_ip: '172.60.5.170',
nrf_ip: '172.60.5.180',
upf_ip: '172.60.5.190',
lmf_ip: '172.60.5.200',
nef_ip: '172.60.5.210',
mme_ip: '172.60.5.220',
n3iwf_ip: '172.60.5.230',
},
@@ -154,6 +156,12 @@ function fnGetData() {
case 'UPF':
state.from.sbi.upf_ip = item.ip;
break;
case 'LMF':
state.from.sbi.lmf_ip = item.ip;
break;
case 'NEF':
state.from.sbi.nef_ip = item.ip;
break;
case 'MME':
state.from.sbi.mme_ip = item.ip;
break;

View File

@@ -57,6 +57,8 @@ let state: StateType = reactive({
nssf_ip: '172.60.5.170',
nrf_ip: '172.60.5.180',
upf_ip: '172.60.5.190',
lmf_ip: '172.60.5.200',
nef_ip: '172.60.5.210',
mme_ip: '172.60.5.220',
n3iwf_ip: '172.60.5.230',
},
@@ -135,6 +137,12 @@ function fnGetList() {
case 'UPF':
state.from.sbi.upf_ip = item.ip;
break;
case 'LMF':
state.from.sbi.lmf_ip = item.ip;
break;
case 'NEF':
state.from.sbi.nef_ip = item.ip;
break;
case 'MME':
state.from.sbi.mme_ip = item.ip;
break;