diff --git a/public/default/config.js b/public/default/config.js index 3b6e9858..7696cf78 100644 --- a/public/default/config.js +++ b/public/default/config.js @@ -11,8 +11,9 @@ */ (function () { // host = ip:port - const host = '192.168.8.100:33030'; - + // const host = '192.168.8.100:33030'; + const host = `${window.location.hostname}:33030`; + // Service Address sessionStorage.setItem('baseUrl', `http://${host}`); // websocket Address diff --git a/src/i18n/locales/en-US.ts b/src/i18n/locales/en-US.ts index 75575b18..684f2d17 100644 --- a/src/i18n/locales/en-US.ts +++ b/src/i18n/locales/en-US.ts @@ -884,6 +884,7 @@ export default { imsiTip3: 'MSIN = Mobile Subscriber Identification Number, consisting of 10 equal digits.', msisdnTip: 'Maximum parameter length {num}', inputTip: 'The maximum length of the parameter is {num}', + cnTypeTip: 'Type of network access allowed', arfbTip: 'Restricted area template, in which the UE is not allowed to communicate with the network in the restricted area specified in the template', sarTip: 'Service Area Restriction template, defining permitted areas in which the UE can communicate with the network, and disallowed areas in which the UE and the network are not allowed to initiate Service Requests or SM signaling to obtain subscriber services', micoTip: 'Signed MICO business flag bits', diff --git a/src/i18n/locales/zh-CN.ts b/src/i18n/locales/zh-CN.ts index f5e7b16a..e47784c8 100644 --- a/src/i18n/locales/zh-CN.ts +++ b/src/i18n/locales/zh-CN.ts @@ -884,6 +884,7 @@ export default { imsiTip3: 'MSIN=移动客户识别码,采用等长10位数字构成', msisdnTip: '参数最大长度 {num}', inputTip: '参数最大长度为 {num}', + cnTypeTip: '允许接入的网络类型', arfbTip: '限制区域模板,在模板指定的限制区域中,UE 不允许与网络通信', sarTip: '服务区域限制模板,定义允许的区域,UE 在这些区域中可以和网络通信;定义不允许的区,UE 和网络在这些区域中,不允许发起Service Request 或 SM 信令来获取用户服务', micoTip: '签约的 MICO 业务标志位', diff --git a/src/views/ne/neInfo/index.vue b/src/views/ne/neInfo/index.vue index d1a5761c..9d3cd6f3 100644 --- a/src/views/ne/neInfo/index.vue +++ b/src/views/ne/neInfo/index.vue @@ -233,8 +233,10 @@ function fnModalEditOk(from: Record) { if (item && res.code === RESULT_CODE_SUCCESS) { item.neType = from.neType; item.neId = from.neId; - item.ip = from.ip; + item.rmUid = from.rmUid; item.neName = from.neName; + item.ip = from.ip; + item.port = from.port; item.status = res.data.online ? '1' : '0'; Object.assign(item.serverState, res.data); const resouresUsage = parseResouresUsage(item.serverState); diff --git a/src/views/neUser/auth/index.vue b/src/views/neUser/auth/index.vue index 2d059b7c..a2d97ec3 100644 --- a/src/views/neUser/auth/index.vue +++ b/src/views/neUser/auth/index.vue @@ -770,6 +770,7 @@ onMounted(() => { @@ -1026,6 +1027,7 @@ onMounted(() => {